diff --git a/apps/ministreaming/java/src/net/i2p/client/streaming/AcceptingChannel.java b/apps/ministreaming/java/src/net/i2p/client/streaming/AcceptingChannel.java index be468b68e4f99f91e3f3ca16bee8a34507f4cc3f..16c96cc895ff699bbb991122d7efc01d8a2e3486 100644 --- a/apps/ministreaming/java/src/net/i2p/client/streaming/AcceptingChannel.java +++ b/apps/ministreaming/java/src/net/i2p/client/streaming/AcceptingChannel.java @@ -6,6 +6,9 @@ import net.i2p.I2PException; import java.net.ConnectException; import java.nio.channels.SelectableChannel; +/** + * @since 0.8.11 + */ public abstract class AcceptingChannel extends SelectableChannel { abstract I2PSocket accept() throws I2PException, ConnectException; I2PSocketManager _socketManager; 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 b118a6b368135e5a79789b4bb8aff63c01094693..6a8e3a6cf5e1eb3d7ba9e6705eba821868404522 100644 --- a/apps/ministreaming/java/src/net/i2p/client/streaming/I2PServerSocket.java +++ b/apps/ministreaming/java/src/net/i2p/client/streaming/I2PServerSocket.java @@ -31,6 +31,9 @@ public interface I2PServerSocket { */ public I2PSocket accept() throws I2PException, ConnectException, SocketTimeoutException; + /** + * @since 0.8.11 + */ public AcceptingChannel getChannel(); /** diff --git a/apps/streaming/java/src/net/i2p/client/streaming/AcceptingChannelImpl.java b/apps/streaming/java/src/net/i2p/client/streaming/AcceptingChannelImpl.java index 0c05f09ff3ddf62348ec34d644bc96ca16ea015b..89242afbca034d619de05389676a42267e64ab7f 100644 --- a/apps/streaming/java/src/net/i2p/client/streaming/AcceptingChannelImpl.java +++ b/apps/streaming/java/src/net/i2p/client/streaming/AcceptingChannelImpl.java @@ -12,6 +12,9 @@ import java.nio.channels.Selector; import java.nio.channels.spi.AbstractSelectionKey; import java.nio.channels.spi.SelectorProvider; +/** + * @since 0.8.11 + */ public class AcceptingChannelImpl extends AcceptingChannel { boolean _isRegistered = false; SelectionKey whichKey = null; diff --git a/apps/streaming/java/src/net/i2p/client/streaming/I2PServerSocketFull.java b/apps/streaming/java/src/net/i2p/client/streaming/I2PServerSocketFull.java index f688086aec046ef5c7468ff8b7089dbc08af03a7..244664bf41a2fc515327624a4be1b47f0064e72c 100644 --- a/apps/streaming/java/src/net/i2p/client/streaming/I2PServerSocketFull.java +++ b/apps/streaming/java/src/net/i2p/client/streaming/I2PServerSocketFull.java @@ -25,6 +25,9 @@ class I2PServerSocketFull implements I2PServerSocket { return _socketManager.receiveSocket(); } + /** + * @since 0.8.11 + */ public AcceptingChannel getChannel() { return new AcceptingChannelImpl(_socketManager); } diff --git a/core/java/src/org/xlattice/crypto/filters/BloomSHA1.java b/core/java/src/org/xlattice/crypto/filters/BloomSHA1.java index 268ef6d9b4b97194879cd5bb5bcceb379bfb7ce1..f9d2986b5c7641e0dd9c225171c9e8a87eb728a8 100644 --- a/core/java/src/org/xlattice/crypto/filters/BloomSHA1.java +++ b/core/java/src/org/xlattice/crypto/filters/BloomSHA1.java @@ -221,7 +221,7 @@ public class BloomSHA1 { /** * Get the bloom filter offsets for reuse. - * Caller should call rv.release() when done. + * Caller should call release(rv) when done with it. * @since 0.8.11 */ public FilterKey getFilterKey(byte[] b, int offset, int len) {