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:
parent
126bc9b482
commit
65dc16c3b3
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue