Author: bodewig
Date: Fri Aug 28 06:27:21 2009
New Revision: 808770
URL: http://svn.apache.org/viewvc?rev=808770&view=rev
Log:
Caching of system classpath breaks environments where directories that are part
of CLASSPATH get created during build (Gump, for example).
Modified:
ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java
Modified: ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java?rev=808770&r1=808769&r2=808770&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/types/Path.java Fri Aug 28
06:27:21 2009
@@ -78,11 +78,6 @@
public static Path systemBootClasspath =
new Path(null, System.getProperty("sun.boot.class.path"));
- static {
- systemClasspath.setCache(true);
- systemBootClasspath.setCache(true);
- }
-
private static final Iterator EMPTY_ITERATOR
= Collections.EMPTY_SET.iterator();