From d7de88f3c9e38a8aab90dddc60a0062625acaa67 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Aug 2009 06:27:21 +0000 Subject: [PATCH] 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 --- src/main/org/apache/tools/ant/types/Path.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/Path.java b/src/main/org/apache/tools/ant/types/Path.java index 1a47bf489..514c162dd 100644 --- a/src/main/org/apache/tools/ant/types/Path.java +++ b/src/main/org/apache/tools/ant/types/Path.java @@ -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();