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/Node.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/Node.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/Node.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/Node.java b/java/src/IceGridGUI/Application/Node.java index d24e5c580be..c325df8db3e 100755 --- a/java/src/IceGridGUI/Application/Node.java +++ b/java/src/IceGridGUI/Application/Node.java @@ -685,7 +685,7 @@ class Node extends TreeNode implements PropertySetParent //
// Diff variables (TODO: avoid duplication with same code in Root)
//
- update.variables = (java.util.TreeMap)_descriptor.variables.clone();
+ update.variables = new java.util.TreeMap(_descriptor.variables);
java.util.List removeVariables = new java.util.LinkedList();
p = _origVariables.entrySet().iterator();
|