diff options
Diffstat (limited to 'java/src/IceGridGUI/Application/Communicator.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/Communicator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/Communicator.java b/java/src/IceGridGUI/Application/Communicator.java index 8b5bec8604c..59a29fbf81d 100755 --- a/java/src/IceGridGUI/Application/Communicator.java +++ b/java/src/IceGridGUI/Application/Communicator.java @@ -985,7 +985,7 @@ abstract class Communicator extends TreeNode implements DescriptorHolder {
CommunicatorDescriptor descriptor = getCommunicatorDescriptor();
removeProperty(key);
- descriptor.propertySet.properties.addFirst(new PropertyDescriptor(key, newValue));
+ ((java.util.LinkedList)descriptor.propertySet.properties).addFirst(new PropertyDescriptor(key, newValue));
}
void removeProperty(String key)
|