mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Fix with a read-only list
This commit is contained in:
parent
855045b811
commit
48956ca53c
1 changed files with 1 additions and 1 deletions
|
@ -624,7 +624,7 @@ public class ManagedBuildGnuToolInfo implements IManagedBuildGnuToolInfo {
|
|||
currList.addAll(Arrays.asList(outNames));
|
||||
myOutputMacros.put(variable, currList);
|
||||
} else {
|
||||
myOutputMacros.put(variable, Arrays.asList(outNames));
|
||||
myOutputMacros.put(variable, new ArrayList(Arrays.asList(outNames)));
|
||||
}
|
||||
}
|
||||
} else
|
||||
|
|
Loading…
Add table
Reference in a new issue