From b98b86bb6a5dda3c702ae68d8b21265e6c05d5f3 Mon Sep 17 00:00:00 2001 From: zzz <zzz@i2pmail.org> Date: Thu, 14 Dec 2023 12:03:07 -0500 Subject: [PATCH] Javadoc: More 0.9.61 --- .../java/src/net/i2p/client/streaming/I2PServerSocket.java | 2 +- apps/sam/java/src/net/i2p/sam/SAMv3Handler.java | 2 +- .../net/i2p/client/streaming/impl/I2PSocketManagerFull.java | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) 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 26ad8aaf20..641aab7284 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 b1257ff20f..e667cb2282 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 9573b19007..ec5315e05a 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 { -- GitLab