You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2008/11/11 09:33:05 UTC

svn commit: r712992 - /ant/core/trunk/src/main/org/apache/tools/ant/ProjectHelper.java

Author: bodewig
Date: Tue Nov 11 00:33:05 2008
New Revision: 712992

URL: http://svn.apache.org/viewvc?rev=712992&view=rev
Log:
remove some warnings from code that is by now carved into stone

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/ProjectHelper.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/ProjectHelper.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/ProjectHelper.java?rev=712992&r1=712991&r2=712992&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/ProjectHelper.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/ProjectHelper.java Tue Nov 11 00:33:05 2008
@@ -102,24 +102,9 @@
     // The following properties are required by import ( and other tasks
     // that read build files using ProjectHelper ).
 
-    // A project helper may process multiple files. We'll keep track
-    // of them - to avoid loops and to allow caching. The caching will
-    // probably accelerate things like <antCall>.
-    // The key is the absolute file, the value is a processed tree.
-    // Since the tree is composed of UE and RC - it can be reused !
-    // protected Hashtable processedFiles=new Hashtable();
-
     private Vector importStack = new Vector();
 
-    // Temporary - until we figure a better API
-    /** EXPERIMENTAL WILL_CHANGE
-     *
-     */
-//    public Hashtable getProcessedFiles() {
-//        return processedFiles;
-//    }
-
-    /** EXPERIMENTAL WILL_CHANGE
+    /**
      *  Import stack.
      *  Used to keep track of imported files. Error reporting should
      *  display the import path.