Skip to content

Commit

Permalink
tiny fix for recursive Translations
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1289 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Jan 4, 2006
1 parent 4e4bd46 commit 6df8080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/data/listManager.java
Expand Up @@ -227,7 +227,7 @@ public static ArrayList getDirsRecursive(File dir, boolean excludeDotfiles){
for (int i=0;i<dirList.length;i++) {
if (dirList[i].isDirectory() && (!excludeDotfiles || !dirList[i].getName().startsWith("."))) {
resultList.add(dirList[i]);
recursive = getDirsRecursive(dirList[i]);
recursive = getDirsRecursive(dirList[i], excludeDotfiles);
iter=recursive.iterator();
while (iter.hasNext()) {
resultList.add(iter.next());
Expand Down

0 comments on commit 6df8080

Please sign in to comment.