diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-12-12 18:54:19 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-12-12 18:54:19 +0100 |
commit | 3dff2b82d498d2e29dc4c42c4053557e16a373d4 (patch) | |
tree | 4242da8678ce8f36e34b9d821212cf78519af415 /java/src/Ice/_ObjectDelM.java | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-3dff2b82d498d2e29dc4c42c4053557e16a373d4.tar.bz2 ice-3dff2b82d498d2e29dc4c42c4053557e16a373d4.tar.xz ice-3dff2b82d498d2e29dc4c42c4053557e16a373d4.zip |
Fixed bug 2592
Diffstat (limited to 'java/src/Ice/_ObjectDelM.java')
-rw-r--r-- | java/src/Ice/_ObjectDelM.java | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/java/src/Ice/_ObjectDelM.java b/java/src/Ice/_ObjectDelM.java index 8bc56496b33..a060df4fae3 100644 --- a/java/src/Ice/_ObjectDelM.java +++ b/java/src/Ice/_ObjectDelM.java @@ -205,22 +205,9 @@ public class _ObjectDelM implements _ObjectDel public void ice_flushBatchRequests() - throws IceInternal.LocalExceptionWrapper { IceInternal.BatchOutgoing out = new IceInternal.BatchOutgoing(__handler); - try - { - out.invoke(); - } - catch(Ice.LocalException ex) - { - // - // We never retry flusing the batch requests as the connection batched - // requests were discarded and the caller needs to be notified of the - // failure. - // - throw new IceInternal.LocalExceptionWrapper(ex, false); - } + out.invoke(); } public IceInternal.RequestHandler |