1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

fix for [bug 205840] Should file-level tool be updated when project toolchain changes?

This commit is contained in:
Mikhail Sennikovsky 2007-11-17 13:55:02 +00:00
parent 126bc9b482
commit 65dc16c3b3

View file

@ -95,7 +95,7 @@ public class PathComparator implements Comparator {
IPath childPath = (IPath)iter.next();
result.add(childPath);
children = getChildPathSet(children, getNext(childPath), true, false);
children = children.tailSet(getNext(childPath));//getChildPathSet(children, getNext(childPath), true, false);
}
return result;
@ -110,7 +110,7 @@ public class PathComparator implements Comparator {
IPath childPath = (IPath)entry.getKey();
result.put(childPath, entry.getValue());
children = getChildPathMap(children, getNext(childPath), true, false);
children = children.tailMap(getNext(childPath));//getChildPathMap(children, getNext(childPath), true, false);
}
return result;