Browse Source

Caching of system classpath breaks environments where directories that are part of CLASSPATH get created during build (Gump, for example).

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@808770 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 16 years ago
parent
commit
d7de88f3c9
1 changed files with 0 additions and 5 deletions
  1. +0
    -5
      src/main/org/apache/tools/ant/types/Path.java

+ 0
- 5
src/main/org/apache/tools/ant/types/Path.java View File

@@ -78,11 +78,6 @@ public class Path extends DataType implements Cloneable, ResourceCollection {
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();



Loading…
Cancel
Save