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

fix for the tool-chain modification functionality

This commit is contained in:
Mikhail Sennikovsky 2007-11-16 12:15:28 +00:00
parent 35af19eaff
commit 57cb57cb84
2 changed files with 3 additions and 1 deletions

View file

@ -182,6 +182,7 @@ public class ConfigurationModification extends FolderInfoModification implements
return;
fRealBuilder = realBuilder;
fCompletePathMapStorage = null;
PerTypeMapStorage storage = getCompleteObjectStore();
TcModificationUtil.applyBuilder(storage, getResourceInfo().getPath(), fSelectedBuilder);

View file

@ -59,7 +59,7 @@ public abstract class ToolListModification implements
// private LinkedHashMap fRealToToolMap = new LinkedHashMap();
// private boolean fSysInfoMapInited;
private PerTypeMapStorage fCompleteObjectStorage;
private TreeMap fCompletePathMapStorage;
protected TreeMap fCompletePathMapStorage;
private HashSet fAddCapableTools;
private Map fFilteredOutTools;
@ -739,4 +739,5 @@ public abstract class ToolListModification implements
}
return fCompletePathMapStorage;
}
}