diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-04-03 14:41:54 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-04-03 14:41:54 -0230 |
commit | d4edcb664ce60c2e4395d534e6759dd8475c5089 (patch) | |
tree | f7322eaeb6472f6506cf85cc4aa6121c19a8d84f /java/test/Ice/exceptions/ThrowerI.java | |
parent | Fixed compile error (diff) | |
download | ice-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.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; } |