Coverage Report - org.webslinger.commons.vfs.FilesCacheFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
FilesCacheFactory
0%
0/2
N/A
1
FilesCacheFactory$1
0%
0/2
N/A
1
 
 1  
 package org.webslinger.commons.vfs;
 2  
 
 3  
 import org.apache.commons.vfs.FilesCache;
 4  
 import org.apache.commons.vfs.cache.DefaultFilesCache;
 5  
 
 6  0
 public final class FilesCacheFactory {
 7  
     public static FilesCache getFilesCache() {
 8  
         //return GlobalFilesCache.getInstance();
 9  0
         return new DefaultFilesCache() {
 10  
             public void close() {
 11  0
             }
 12  
         };
 13  
     }
 14  
 }