bayard 2004/10/29 11:25:36
Modified: io/src/java/org/apache/commons/io/find FileFinder.java
Log:
promoted comment to a TODO
Revision Changes Path
1.2 +2 -2
jakarta-commons/io/src/java/org/apache/commons/io/find/FileFinder.java
Index: FileFinder.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/find/FileFinder.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- FileFinder.java 17 Sep 2004 00:14:48 -0000 1.1
+++ FileFinder.java 29 Oct 2004 18:25:36 -0000 1.2
@@ -69,13 +69,13 @@
return find(directory, new java.util.HashMap());
}
- // add maxdepth and mindepth somehow
+ // TODO: add maxdepth and mindepth somehow
public File[] find(File directory, Map options) {
notifyDirectoryStarted(directory);
boolean depthFirst = toBoolean(options.get(Finder.DEPTH));
- // to implement
+ // TODO: to implement
int maxDepth = toInt(options.get(Finder.MAXDEPTH));
int minDepth = toInt(options.get(Finder.MINDEPTH));
boolean ignoreHiddenDirs =
toBoolean(options.get(Finder.IGNORE_HIDDEN_DIRS));
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]