diff options
Diffstat (limited to 'cs/test/Ice/objects/UnexpectedObjectExceptionTestI.cs')
-rw-r--r-- | cs/test/Ice/objects/UnexpectedObjectExceptionTestI.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cs/test/Ice/objects/UnexpectedObjectExceptionTestI.cs b/cs/test/Ice/objects/UnexpectedObjectExceptionTestI.cs index 75ff147d8ae..8860e220923 100644 --- a/cs/test/Ice/objects/UnexpectedObjectExceptionTestI.cs +++ b/cs/test/Ice/objects/UnexpectedObjectExceptionTestI.cs @@ -13,12 +13,12 @@ public sealed class UnexpectedObjectExceptionTestI : Ice.Blobject { public override bool ice_invoke(byte[] inParams, out byte[] outParams, Ice.Current current) { - Ice.Communicator communicator = current.adapter.getCommunicator(); - Ice.OutputStream @out = Ice.Util.createOutputStream(communicator); - AlsoEmpty ae = new AlsoEmpty(); - Test.AlsoEmptyHelper.write(@out, ae); - @out.writePendingObjects(); - outParams = @out.finished(); - return true; + Ice.Communicator communicator = current.adapter.getCommunicator(); + Ice.OutputStream @out = Ice.Util.createOutputStream(communicator); + AlsoEmpty ae = new AlsoEmpty(); + Test.AlsoEmptyHelper.write(@out, ae); + @out.writePendingObjects(); + outParams = @out.finished(); + return true; } } |