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/AMDThrowerI.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/AMDThrowerI.java')
-rw-r--r-- | java/test/Ice/exceptions/AMDThrowerI.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/java/test/Ice/exceptions/AMDThrowerI.java b/java/test/Ice/exceptions/AMDThrowerI.java index b4b187a5ab1..d37b25971a1 100644 --- a/java/test/Ice/exceptions/AMDThrowerI.java +++ b/java/test/Ice/exceptions/AMDThrowerI.java @@ -34,15 +34,14 @@ import test.Ice.exceptions.AMD.Test._ThrowerDisp; public final class AMDThrowerI extends _ThrowerDisp { public - AMDThrowerI(Ice.ObjectAdapter adapter) + AMDThrowerI() { - _adapter = adapter; } public void shutdown_async(AMD_Thrower_shutdown cb, Ice.Current current) { - _adapter.getCommunicator().shutdown(); + current.adapter.getCommunicator().shutdown(); cb.ice_response(); } @@ -185,6 +184,4 @@ public final class AMDThrowerI extends _ThrowerDisp { throw new java.lang.AssertionError(); } - - private Ice.ObjectAdapter _adapter; } |