1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug #202677: ArrayStoreException in Toolchain Editor

This commit is contained in:
Oleg Krasilnikov 2007-09-10 10:57:40 +00:00
parent 1c8bdeab65
commit 04caf0d36f

View file

@ -222,7 +222,7 @@ public class BooleanExpressionApplicabilityCalculator implements IOptionApplicab
public String[] getReferencedPropertyIds(){
Map map = getReferencedProperties();
return (String[])map.entrySet().toArray(new String[map.size()]);
return (String[])map.keySet().toArray(new String[map.size()]);
}
public String[] getReferencedValueIds(String propertyId){