diff options
Diffstat (limited to 'java/test/Ice/exceptions/ThrowerI.java')
-rw-r--r-- | java/test/Ice/exceptions/ThrowerI.java | 7 |
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; } |