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/Root.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/Root.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/Root.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/Application/Root.java b/java/src/IceGridGUI/Application/Root.java index ce6d6f7138a..8c851b77f11 100755 --- a/java/src/IceGridGUI/Application/Root.java +++ b/java/src/IceGridGUI/Application/Root.java @@ -572,7 +572,7 @@ public class Root extends ListTreeNode //
// Diff variables
//
- update.variables = (java.util.TreeMap)_descriptor.variables.clone();
+ update.variables = new java.util.TreeMap(_descriptor.variables);
java.util.List removeVariables = new java.util.LinkedList();
java.util.Iterator p = _origVariables.entrySet().iterator();
@@ -1174,7 +1174,7 @@ public class Root extends ListTreeNode // Keeps original version (as shallow copies) to be able to build
// ApplicationUpdateDescriptor. Only used when _live == true
//
- private java.util.TreeMap _origVariables;
+ private java.util.Map _origVariables;
private String _origDescription;
private DistributionDescriptor _origDistrib;
|