Skip to content
Snippets Groups Projects
Commit 9cf91240 authored by felmer's avatar felmer
Browse files

bug fixed in recursive project traversing

SVN: 10023
parent ac613c24
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ public class RecursiveProjectTraverser ...@@ -44,7 +44,7 @@ public class RecursiveProjectTraverser
if (entry.isSubprojectEntry() && visitedEntries.contains(entry) == false) if (entry.isSubprojectEntry() && visitedEntries.contains(entry) == false)
{ {
visitedEntries.add(entry); visitedEntries.add(entry);
traverse(projectHandler.createHandler(entry)); traverse(projectHandler.createHandler(entry), visitedEntries);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment