diff options
author | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
commit | 4cc5d77c383b6c91c3af9fe44df9687bb9b15580 (patch) | |
tree | 64ce3d6cf35b15497de50f298f7225a8c72f64b6 /java/test/Ice/objects/UnexpectedObjectExceptionTestI.java | |
parent | Merge commit 'origin/R3_3_branch' (diff) | |
download | ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.bz2 ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.xz ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.zip |
Merged android-testsuite branch.
Diffstat (limited to 'java/test/Ice/objects/UnexpectedObjectExceptionTestI.java')
-rw-r--r-- | java/test/Ice/objects/UnexpectedObjectExceptionTestI.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java b/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java index bdb54b6867e..9446c9ca484 100644 --- a/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java +++ b/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java @@ -7,7 +7,11 @@ // // ********************************************************************** -import Test.*; +package test.Ice.objects; + +import test.Ice.objects.Test.AlsoEmpty; +import test.Ice.objects.Test.AlsoEmptyHelper; + public final class UnexpectedObjectExceptionTestI extends Ice.Blobject { @@ -17,7 +21,7 @@ public final class UnexpectedObjectExceptionTestI extends Ice.Blobject Ice.Communicator communicator = current.adapter.getCommunicator(); Ice.OutputStream out = Ice.Util.createOutputStream(communicator); AlsoEmpty ae = new AlsoEmpty(); - Test.AlsoEmptyHelper.write(out, ae); + AlsoEmptyHelper.write(out, ae); out.writePendingObjects(); outParams.value = out.finished(); return true; |