diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-05-31 22:52:08 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-05-31 22:52:08 +0000 |
commit | 4df583f8e4785296e4c4b592d24bba5f1fd02136 (patch) | |
tree | 55e97a21b1397e2bf30c297bf8119e8e13216566 /java/src/IceGridGUI/Application/PlainService.java | |
parent | minor change. (diff) | |
download | ice-4df583f8e4785296e4c4b592d24bba5f1fd02136.tar.bz2 ice-4df583f8e4785296e4c4b592d24bba5f1fd02136.tar.xz ice-4df583f8e4785296e4c4b592d24bba5f1fd02136.zip |
Fixed various bugs
Diffstat (limited to 'java/src/IceGridGUI/Application/PlainService.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/PlainService.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/java/src/IceGridGUI/Application/PlainService.java b/java/src/IceGridGUI/Application/PlainService.java index 67734554064..1b417427d47 100755 --- a/java/src/IceGridGUI/Application/PlainService.java +++ b/java/src/IceGridGUI/Application/PlainService.java @@ -171,28 +171,6 @@ class PlainService extends Communicator implements Service, Cloneable ((Communicator)_parent).getServices().move(this, up);
}
-
- java.util.List findInstances(boolean includeTemplate)
- {
- java.util.List result = new java.util.LinkedList();
-
- //
- // First find all instances of the enclosing Communicator, including
- // the ServerTemplate itself (if that's my parent)
- //
- java.util.List communicatorList = ((Communicator)_parent).findInstances(true);
-
- java.util.Iterator p = communicatorList.iterator();
- while(p.hasNext())
- {
- Services services = ((Communicator)p.next()).getServices();
- Service service = (Service)services.findChildWithDescriptor(_descriptor);
- assert service != null;
- result.add(service);
- }
- return result;
- }
-
public Object rebuild(java.util.List editables)
throws UpdateFailedException
{
|