[jboss-cvs] JBossAS SVN: r100895 - projects/jboss-cl/branches/classloading-vfs-vfs3-int/src/main/java/org/jboss/classloading/spi/vfs/policy.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Feb 11 15:49:30 EST 2010
Author: johnbailey
Date: 2010-02-11 15:49:29 -0500 (Thu, 11 Feb 2010)
New Revision: 100895
Modified:
projects/jboss-cl/branches/classloading-vfs-vfs3-int/src/main/java/org/jboss/classloading/spi/vfs/policy/VFSClassLoaderPolicy.java
Log:
[JBAS-7360] - Additional cleanup from VFS3 integration
Modified: projects/jboss-cl/branches/classloading-vfs-vfs3-int/src/main/java/org/jboss/classloading/spi/vfs/policy/VFSClassLoaderPolicy.java
===================================================================
--- projects/jboss-cl/branches/classloading-vfs-vfs3-int/src/main/java/org/jboss/classloading/spi/vfs/policy/VFSClassLoaderPolicy.java 2010-02-11 20:24:47 UTC (rev 100894)
+++ projects/jboss-cl/branches/classloading-vfs-vfs3-int/src/main/java/org/jboss/classloading/spi/vfs/policy/VFSClassLoaderPolicy.java 2010-02-11 20:49:29 UTC (rev 100895)
@@ -113,9 +113,6 @@
@SuppressWarnings({ "unchecked", "rawtypes" })
private Map<String, VirtualFileInfo> vfsCache = Collections.synchronizedMap(new SoftValueHashMap());
- /** JBCL-64, JBVFS-77: CodeSource should use real url **/
- private boolean useRealURL = true;
-
/**
* Determine a name from the roots
*
@@ -495,26 +492,6 @@
return null;
}
- /**
- * Do we use real url.
- *
- * @return true if real url should be used
- */
- public boolean isUseRealURL()
- {
- return useRealURL;
- }
-
- /**
- * Set use real url flag.
- *
- * @param useRealURL the real url flag
- */
- public void setUseRealURL(boolean useRealURL)
- {
- this.useRealURL = useRealURL;
- }
-
@Override
// FindBugs: The Set doesn't use equals/hashCode
public void getResources(String name, Set<URL> urls) throws IOException
More information about the jboss-cvs-commits
mailing list