summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/PropertySet.java
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-05-23 23:20:23 +0000
committerMark Spruiell <mes@zeroc.com>2006-05-23 23:20:23 +0000
commit9a042e584b24d3582243d98062d48b267f01700d (patch)
tree38dd2445da935ebacc82970b28e51519f75e1ff5 /java/src/IceGridGUI/Application/PropertySet.java
parentadding --meta option (diff)
downloadice-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-xjava/src/IceGridGUI/Application/PropertySet.java2
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;
}