diff --git a/apps/ministreaming/java/src/net/i2p/client/streaming/I2PServerSocket.java b/apps/ministreaming/java/src/net/i2p/client/streaming/I2PServerSocket.java index 26ad8aaf20edff43069654d8988519eb71be403c..641aab7284d73694ce1b635bfbbb8cadd2d86c88 100644 --- a/apps/ministreaming/java/src/net/i2p/client/streaming/I2PServerSocket.java +++ b/apps/ministreaming/java/src/net/i2p/client/streaming/I2PServerSocket.java @@ -29,7 +29,7 @@ public interface I2PServerSocket { * * @throws I2PException if there is a problem with reading a new socket * from the data available (e.g. the I2PSession is closed); - * as of 0.9.60, this may be an I2PSessionException which extends I2PException + * as of 0.9.61, this may be an I2PSessionException which extends I2PException * @throws RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.34 * @throws ConnectException if the I2PServerSocket is closed, or if interrupted. * Not actually thrown through 0.9.16; thrown as of 0.9.17 diff --git a/apps/sam/java/src/net/i2p/sam/SAMv3Handler.java b/apps/sam/java/src/net/i2p/sam/SAMv3Handler.java index b1257ff20fa398ce2f4f7692716ec3ce96f39d0c..e667cb2282e06ec44c7057d20720797e06859564 100644 --- a/apps/sam/java/src/net/i2p/sam/SAMv3Handler.java +++ b/apps/sam/java/src/net/i2p/sam/SAMv3Handler.java @@ -864,7 +864,7 @@ class SAMv3Handler extends SAMv1Handler _log.debug("STREAM ACCEPT failed", e); notifyStreamResult( verbose, "TIMEOUT", e.getMessage() ); } catch (I2PSessionException e) { - // As of 0.9.60, this is thrown for a destroyed session. + // As of 0.9.61, this is thrown for a destroyed session. // Kill the SAM session. if (_log.shouldDebug()) _log.debug("STREAM ACCEPT failed", e); diff --git a/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PSocketManagerFull.java b/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PSocketManagerFull.java index 9573b19007250f5a8ff686633fe4dd266a24eb99..ec5315e05a2de6ad979dc3c70a28077dd1fab9f9 100644 --- a/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PSocketManagerFull.java +++ b/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PSocketManagerFull.java @@ -372,7 +372,7 @@ public class I2PSocketManagerFull implements I2PSocketManager { * incoming connections on a subsession. * * @return connected I2PSocket, or null through 0.9.16, non-null as of 0.9.17 - * @throws I2PException if session is closed; as of 0.9.60, this is an I2PSessionException which extends I2PException + * @throws I2PException if session is closed; as of 0.9.61, this is an I2PSessionException which extends I2PException * @throws net.i2p.client.streaming.RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.34 * @throws ConnectException (since 0.9.17; I2PServerSocket interface always declared it) * @throws SocketTimeoutException if a timeout was previously set with setSoTimeout and the timeout has been reached. @@ -524,14 +524,14 @@ public class I2PSocketManagerFull implements I2PSocketManager { } /** - * @throws I2PException if session is closed; as of 0.9.60, this is an I2PSessionException which extends I2PException + * @throws I2PException if session is closed; as of 0.9.61, this is an I2PSessionException which extends I2PException */ private void verifySession() throws I2PException { verifySession(_connectionManager.getSession()); } /** - * @throws I2PException if session is closed; as of 0.9.60, this is an I2PSessionException which extends I2PException + * @throws I2PException if session is closed; as of 0.9.61, this is an I2PSessionException which extends I2PException * @since 0.9.21 */ private void verifySession(I2PSession session) throws I2PException {