summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/Adapter.java
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-02-14 14:56:46 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-02-14 14:56:46 +0000
commit20591078bc1c9e6b8d15f1783cbc2eef4fa435c2 (patch)
tree5332c02bbfffa309678ebe850d2626bd71034146 /java/src/IceGridGUI/Application/Adapter.java
parentMore Ice.OA fixes (diff)
downloadice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.tar.bz2
ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.tar.xz
ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.zip
Remove Ice.OA.
Diffstat (limited to 'java/src/IceGridGUI/Application/Adapter.java')
-rwxr-xr-xjava/src/IceGridGUI/Application/Adapter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/IceGridGUI/Application/Adapter.java b/java/src/IceGridGUI/Application/Adapter.java
index f12b90d139b..242c96fa7c0 100755
--- a/java/src/IceGridGUI/Application/Adapter.java
+++ b/java/src/IceGridGUI/Application/Adapter.java
@@ -105,8 +105,8 @@ class Adapter extends TreeNode implements DescriptorHolder
public void destroy()
{
- removeProperty("Ice.OA." + _descriptor.name + ".Endpoints");
- removeProperty("Ice.OA." + _descriptor.name + ".PublishedEndpoints");
+ removeProperty(_descriptor.name + ".Endpoints");
+ removeProperty(_descriptor.name + ".PublishedEndpoints");
((Communicator)_parent).getAdapters().destroyChild(this);
}
@@ -154,7 +154,7 @@ class Adapter extends TreeNode implements DescriptorHolder
{
java.util.List attributes = new java.util.LinkedList();
attributes.add(createAttribute("name", _descriptor.name));
- String oaPrefix = "Ice.OA." + _descriptor.name + ".";
+ String oaPrefix = _descriptor.name + ".";
attributes.add(createAttribute("endpoints", getProperty(oaPrefix + "Endpoints")));
attributes.add(createAttribute("id", _descriptor.id));