tiny fix for recursive Translations

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1289 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
allo 19 years ago
parent 4e4bd4662d
commit 6df8080cf2

@ -227,7 +227,7 @@ public class listManager {
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());

Loading…
Cancel
Save