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/ServiceInstance.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/ServiceInstance.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/ServiceInstance.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/IceGridGUI/Application/ServiceInstance.java b/java/src/IceGridGUI/Application/ServiceInstance.java index 937b3dcae5c..9122e091f1b 100755 --- a/java/src/IceGridGUI/Application/ServiceInstance.java +++ b/java/src/IceGridGUI/Application/ServiceInstance.java @@ -33,10 +33,10 @@ class ServiceInstance extends TreeNode implements Service, Cloneable return copy;
}
- static public java.util.LinkedList
- copyDescriptors(java.util.LinkedList descriptors)
+ static public java.util.List
+ copyDescriptors(java.util.List descriptors)
{
- java.util.LinkedList copy = new java.util.LinkedList();
+ java.util.List copy = new java.util.LinkedList();
java.util.Iterator p = descriptors.iterator();
while(p.hasNext())
{
|