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:
parent
7f927adbca
commit
354ee07912
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ public class DiscoveredPathInfo implements IPerProjectDiscoveredPathInfo, IDisco
|
|||
}
|
||||
// Now do the same for the symbols
|
||||
Map<String, SymbolEntry> symbols = getSymbolMap();
|
||||
Set<String> symbolsSet = includes.keySet();
|
||||
Set<String> symbolsSet = symbols.keySet();
|
||||
for (String symbol : symbolsSet) {
|
||||
SymbolEntry se = symbols.get(symbol);
|
||||
List<String> activeValues = se.getActiveRaw();
|
||||
|
|
Loading…
Add table
Reference in a new issue