summaryrefslogtreecommitdiff
path: root/java/test/Ice/slicing/exceptions/TestI.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/slicing/exceptions/TestI.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/slicing/exceptions/TestI.java')
-rw-r--r--java/test/Ice/slicing/exceptions/TestI.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/java/test/Ice/slicing/exceptions/TestI.java b/java/test/Ice/slicing/exceptions/TestI.java
index cd26ea02403..a5898d78b26 100644
--- a/java/test/Ice/slicing/exceptions/TestI.java
+++ b/java/test/Ice/slicing/exceptions/TestI.java
@@ -22,15 +22,14 @@ import test.Ice.slicing.exceptions.server.Test._TestIntfDisp;
public final class TestI extends _TestIntfDisp
{
public
- TestI(Ice.ObjectAdapter adapter)
+ TestI()
{
- _adapter = adapter;
}
public void
shutdown(Ice.Current current)
{
- _adapter.getCommunicator().shutdown();
+ current.adapter.getCommunicator().shutdown();
}
public void
@@ -167,5 +166,4 @@ public final class TestI extends _TestIntfDisp
umd2.umd2 = "UnknownMostDerived2.umd2";
throw umd2;
}
- private Ice.ObjectAdapter _adapter;
}