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:
parent
1c8bdeab65
commit
04caf0d36f
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ public class BooleanExpressionApplicabilityCalculator implements IOptionApplicab
|
||||||
|
|
||||||
public String[] getReferencedPropertyIds(){
|
public String[] getReferencedPropertyIds(){
|
||||||
Map map = getReferencedProperties();
|
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){
|
public String[] getReferencedValueIds(String propertyId){
|
||||||
|
|
Loading…
Add table
Reference in a new issue