mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 03:53:21 +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));
|
currList.addAll(Arrays.asList(outNames));
|
||||||
myOutputMacros.put(variable, currList);
|
myOutputMacros.put(variable, currList);
|
||||||
} else {
|
} else {
|
||||||
myOutputMacros.put(variable, Arrays.asList(outNames));
|
myOutputMacros.put(variable, new ArrayList(Arrays.asList(outNames)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Add table
Reference in a new issue