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:
parent
19a37f18b4
commit
22ed0e0ae6
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue