Author: ggregory
Date: Wed Jun 13 21:01:08 2012
New Revision: 1350015

URL: http://svn.apache.org/viewvc?rev=1350015&view=rev
Log:
[VFS-419] JarFileSystem incorrectly resolves file if it has been removed from 
the cache: Add commented out method.

Modified:
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java?rev=1350015&r1=1350014&r2=1350015&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java
 Wed Jun 13 21:01:08 2012
@@ -48,6 +48,12 @@ public class JarFileSystem extends ZipFi
         super(rootName, file, fileSystemOptions);
     }
 
+//    @Override
+//    protected FileObject createFile(AbstractFileName name) throws 
FileSystemException
+//    {
+//        return new JarFileObject(name, null, this, false);
+//    }
+
     @Override
     protected ZipFile createZipFile(File file) throws FileSystemException
     {
@@ -211,4 +217,5 @@ public class JarFileSystem extends ZipFi
     {
         return super.getZipFile();
     }
+
 }


Reply via email to