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

Bug 310997 - NPE in DiscoveredPathInfo

This commit is contained in:
Anton Leherbauer 2010-04-29 11:59:25 +00:00
parent 7f927adbca
commit 354ee07912

View file

@ -145,7 +145,7 @@ public class DiscoveredPathInfo implements IPerProjectDiscoveredPathInfo, IDisco
} }
// Now do the same for the symbols // Now do the same for the symbols
Map<String, SymbolEntry> symbols = getSymbolMap(); Map<String, SymbolEntry> symbols = getSymbolMap();
Set<String> symbolsSet = includes.keySet(); Set<String> symbolsSet = symbols.keySet();
for (String symbol : symbolsSet) { for (String symbol : symbolsSet) {
SymbolEntry se = symbols.get(symbol); SymbolEntry se = symbols.get(symbol);
List<String> activeValues = se.getActiveRaw(); List<String> activeValues = se.getActiveRaw();