Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Aug 18, 2010
1 parent 8b5796c commit 33f9a95
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -91,11 +91,11 @@ private Map<File, Long> createLastModifiedMap(File folder) {
private static Set<File> recursiveListFiles(File folder) {
Set<File> files = new HashSet<File>();
if(folder.isDirectory()) {
final File[] childs = folder.listFiles();
if(null == childs) {
final File[] children = folder.listFiles();
if(null == children) {
return files;
}
for (File file : childs) {
for (File file : children) {
if (file.isDirectory()) {
files.addAll(recursiveListFiles(file));
} else {
Expand Down

0 comments on commit 33f9a95

Please sign in to comment.