diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-10-03 15:34:33 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-10-03 15:34:33 -0230 |
commit | b530efc5ccfb6c2b6e096933431f1f1827851996 (patch) | |
tree | 32436ff41466bb7339d250477cda3a4ec7708075 /java/src/Ice/ConnectionI.java | |
parent | ICE-5613 - Systemd service support (diff) | |
download | ice-b530efc5ccfb6c2b6e096933431f1f1827851996.tar.bz2 ice-b530efc5ccfb6c2b6e096933431f1f1827851996.tar.xz ice-b530efc5ccfb6c2b6e096933431f1f1827851996.zip |
- Java Application now catches OperationInterruptedException and
retries.
- Removed the InProgress state from Instance, simplified and corrected
the destroy logic.
Diffstat (limited to 'java/src/Ice/ConnectionI.java')
-rw-r--r-- | java/src/Ice/ConnectionI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/Ice/ConnectionI.java b/java/src/Ice/ConnectionI.java index fe26e8c1104..3e2b9b70c7e 100644 --- a/java/src/Ice/ConnectionI.java +++ b/java/src/Ice/ConnectionI.java @@ -1735,7 +1735,7 @@ public final class ConnectionI extends IceInternal.EventHandler implements Conne // If setState() is called with an exception, then only closed // and closing states are permissible. // - assert (state >= StateClosing); + assert state >= StateClosing; if(_state == state) // Don't switch twice. { |