1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 01:45:33 +02:00

Bug 572250: Rename variables for consistency

Renames the local variables to be consistent with the names
in similar code.

Change-Id: Ic6159b7b108d433fdbd213d44d5a410982109f1d
This commit is contained in:
Jonah Graham 2021-04-08 10:56:11 -04:00
parent 19a37f18b4
commit 22ed0e0ae6

View file

@ -33,9 +33,9 @@ public class ScannerInfo implements IScannerInfo {
this(macroDefinitions, null);
}
public ScannerInfo(Map<String, String> macroDefinitions, String[] includeSearchPath) {
definedSymbols = macroDefinitions != null ? macroDefinitions : Collections.<String, String>emptyMap();
includePaths = includeSearchPath != null ? includeSearchPath : new String[] {};
public ScannerInfo(Map<String, String> definedSymbols, String[] includePaths) {
this.definedSymbols = definedSymbols != null ? definedSymbols : Collections.<String, String>emptyMap();
this.includePaths = includePaths != null ? includePaths : new String[] {};
}
@Override