1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 04:45:38 +02:00
This commit is contained in:
Mikhail Sennikovsky 2008-02-28 13:22:36 +00:00
parent 55635e6d20
commit 27c357c01a

View file

@ -316,11 +316,13 @@ public class FolderInfoModification extends ToolListModification implements IFol
foInfoPaths.add(path); foInfoPaths.add(path);
Map toolPathsMap = tcApplicabilityPaths.fToolPathMap; Map toolPathsMap = tcApplicabilityPaths.fToolPathMap;
if(toolSet != null){
for(Iterator iter = toolSet.iterator(); iter.hasNext(); ){ for(Iterator iter = toolSet.iterator(); iter.hasNext(); ){
Set set = new HashSet(); Set set = new HashSet();
toolPathsMap.put(iter.next(), set); toolPathsMap.put(iter.next(), set);
set.add(path); set.add(path);
} }
}
calculateChildPaths(pathMap, path, curTc, foInfoPaths, toolPathsMap, fileInfoPaths); calculateChildPaths(pathMap, path, curTc, foInfoPaths, toolPathsMap, fileInfoPaths);