summaryrefslogtreecommitdiff
path: root/java/test/Ice/exceptions/ThrowerI.java
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-04-03 14:41:54 -0230
committerDwayne Boone <dwayne@zeroc.com>2009-04-03 14:41:54 -0230
commitd4edcb664ce60c2e4395d534e6759dd8475c5089 (patch)
treef7322eaeb6472f6506cf85cc4aa6121c19a8d84f /java/test/Ice/exceptions/ThrowerI.java
parentFixed compile error (diff)
downloadice-d4edcb664ce60c2e4395d534e6759dd8475c5089.tar.bz2
ice-d4edcb664ce60c2e4395d534e6759dd8475c5089.tar.xz
ice-d4edcb664ce60c2e4395d534e6759dd8475c5089.zip
Bug 3465 - Remove _adapter members from test where unecessary
Diffstat (limited to 'java/test/Ice/exceptions/ThrowerI.java')
-rw-r--r--java/test/Ice/exceptions/ThrowerI.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/java/test/Ice/exceptions/ThrowerI.java b/java/test/Ice/exceptions/ThrowerI.java
index a2a94ab389c..371b099f86e 100644
--- a/java/test/Ice/exceptions/ThrowerI.java
+++ b/java/test/Ice/exceptions/ThrowerI.java
@@ -18,15 +18,14 @@ import test.Ice.exceptions.Test._ThrowerDisp;
public final class ThrowerI extends _ThrowerDisp
{
public
- ThrowerI(Ice.ObjectAdapter adapter)
+ ThrowerI()
{
- _adapter = adapter;
}
public void
shutdown(Ice.Current current)
{
- _adapter.getCommunicator().shutdown();
+ current.adapter.getCommunicator().shutdown();
}
public boolean
@@ -149,6 +148,4 @@ public final class ThrowerI extends _ThrowerDisp
{
throw new java.lang.AssertionError();
}
-
- private Ice.ObjectAdapter _adapter;
}