diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-05-23 23:20:23 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-05-23 23:20:23 +0000 |
commit | 9a042e584b24d3582243d98062d48b267f01700d (patch) | |
tree | 38dd2445da935ebacc82970b28e51519f75e1ff5 /java/src/IceGridGUI/Application/PropertySet.java | |
parent | adding --meta option (diff) | |
download | ice-9a042e584b24d3582243d98062d48b267f01700d.tar.bz2 ice-9a042e584b24d3582243d98062d48b267f01700d.tar.xz ice-9a042e584b24d3582243d98062d48b267f01700d.zip |
fixes for abstract type mapping
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;
}
|