We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f34ae9 commit 10f68adCopy full SHA for 10f68ad
1 file changed
src/java/org/apache/commons/io/find/FileFinder.java
@@ -69,13 +69,13 @@ public File[] find(File directory) {
69
return find(directory, new java.util.HashMap());
70
}
71
72
- // add maxdepth and mindepth somehow
+ // TODO: add maxdepth and mindepth somehow
73
public File[] find(File directory, Map options) {
74
notifyDirectoryStarted(directory);
75
76
boolean depthFirst = toBoolean(options.get(Finder.DEPTH));
77
78
- // to implement
+ // TODO: to implement
79
int maxDepth = toInt(options.get(Finder.MAXDEPTH));
80
int minDepth = toInt(options.get(Finder.MINDEPTH));
81
boolean ignoreHiddenDirs = toBoolean(options.get(Finder.IGNORE_HIDDEN_DIRS));
0 commit comments