mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-04 14:13:24 +02:00
Bug 559877 - CBuildConfiguration.getProperties() returns an empty map
Change-Id: I3da2aee59eaf06b8e5d0bbd4ccc05b2a0139c3ef Signed-off-by: Fabrizio Iannetti <fabrizio.iannetti@gmail.com>
This commit is contained in:
parent
4d6ecb4f20
commit
5403404e09
1 changed files with 1 additions and 1 deletions
|
@ -1172,7 +1172,7 @@ public abstract class CBuildConfiguration extends PlatformObject implements ICBu
|
||||||
Map<String, String> properties = new HashMap<>();
|
Map<String, String> properties = new HashMap<>();
|
||||||
Preferences settings = getSettings();
|
Preferences settings = getSettings();
|
||||||
try {
|
try {
|
||||||
for (String key : settings.childrenNames()) {
|
for (String key : settings.keys()) {
|
||||||
String value = settings.get(key, null);
|
String value = settings.get(key, null);
|
||||||
if (value != null) {
|
if (value != null) {
|
||||||
properties.put(key, value);
|
properties.put(key, value);
|
||||||
|
|
Loading…
Add table
Reference in a new issue