Skip to content

Commit 10f68ad

Browse files
committed
promoted comment to a TODO
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@140627 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2f34ae9 commit 10f68ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/java/org/apache/commons/io/find/FileFinder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ public File[] find(File directory) {
6969
return find(directory, new java.util.HashMap());
7070
}
7171

72-
// add maxdepth and mindepth somehow
72+
// TODO: add maxdepth and mindepth somehow
7373
public File[] find(File directory, Map options) {
7474
notifyDirectoryStarted(directory);
7575

7676
boolean depthFirst = toBoolean(options.get(Finder.DEPTH));
7777

78-
// to implement
78+
// TODO: to implement
7979
int maxDepth = toInt(options.get(Finder.MAXDEPTH));
8080
int minDepth = toInt(options.get(Finder.MINDEPTH));
8181
boolean ignoreHiddenDirs = toBoolean(options.get(Finder.IGNORE_HIDDEN_DIRS));

0 commit comments

Comments
 (0)