diff options
Diffstat (limited to 'java/src/IceGridGUI/Application/PropertySet.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/PropertySet.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/PropertySet.java b/java/src/IceGridGUI/Application/PropertySet.java index d964ca1ae94..8e6f2474716 100755 --- a/java/src/IceGridGUI/Application/PropertySet.java +++ b/java/src/IceGridGUI/Application/PropertySet.java @@ -21,7 +21,7 @@ class PropertySet extends TreeNode copyDescriptor(PropertySetDescriptor d)
{
PropertySetDescriptor psd = (PropertySetDescriptor)d.clone();
- psd.properties = (java.util.LinkedList)psd.properties.clone();
+ psd.properties = new java.util.LinkedList(psd.properties);
return psd;
}
|