You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by mb...@apache.org on 2006/11/22 00:48:19 UTC

svn commit: r477967 - /ant/core/trunk/src/main/org/apache/tools/ant/types/resources/Resources.java

Author: mbenson
Date: Tue Nov 21 15:48:18 2006
New Revision: 477967

URL: http://svn.apache.org/viewvc?view=rev&rev=477967
Log:
Expose Iterator publicly as a helper to other ResourceCollections

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/types/resources/Resources.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/types/resources/Resources.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/types/resources/Resources.java?view=diff&rev=477967&r1=477966&r2=477967
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/types/resources/Resources.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/types/resources/Resources.java Tue Nov 21 15:48:18 2006
@@ -52,7 +52,8 @@
         }
     };
 
-    private static final Iterator EMPTY_ITERATOR = new Iterator() {
+    /** static empty Iterator */
+    public static final Iterator EMPTY_ITERATOR = new Iterator() {
         public Object next() {
             throw new NoSuchElementException();
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org