diff --git a/apps/ministreaming/java/src/net/i2p/client/streaming/I2PSocketOptions.java b/apps/ministreaming/java/src/net/i2p/client/streaming/I2PSocketOptions.java index 3bc46aeb8cc174d4a4f75331a7cf20d07f67f30c..91e71003fec8b97819e2c1efd9f0097e17f2276b 100644 --- a/apps/ministreaming/java/src/net/i2p/client/streaming/I2PSocketOptions.java +++ b/apps/ministreaming/java/src/net/i2p/client/streaming/I2PSocketOptions.java @@ -38,7 +38,7 @@ public class I2PSocketOptions { /** * What is the longest we'll block on the input stream while waiting - * for more data? If this value is exceeded, the read() throws + * for more data. If this value is exceeded, the read() throws * InterruptedIOException */ public long getReadTimeout() { @@ -47,7 +47,7 @@ public class I2PSocketOptions { /** * What is the longest we'll block on the input stream while waiting - * for more data? If this value is exceeded, the read() throws + * for more data. If this value is exceeded, the read() throws * InterruptedIOException */ public void setReadTimeout(long ms) { @@ -79,7 +79,7 @@ public class I2PSocketOptions { /** * What is the longest we'll block on the output stream while waiting - * for the data to flush? If this value is exceeded, the write() throws + * for the data to flush. If this value is exceeded, the write() throws * InterruptedIOException. If this is less than or equal to zero, there * is no timeout. */ @@ -89,7 +89,7 @@ public class I2PSocketOptions { /** * What is the longest we'll block on the output stream while waiting - * for the data to flush? If this value is exceeded, the write() throws + * for the data to flush. If this value is exceeded, the write() throws * InterruptedIOException. If this is less than or equal to zero, there * is no timeout. */ diff --git a/apps/ministreaming/java/src/net/i2p/client/streaming/StreamSinkClient.java b/apps/ministreaming/java/src/net/i2p/client/streaming/StreamSinkClient.java index 5b4cdad6388eb5c5b1167b2be2cbb5b8a96d8c45..4ef7f2cfc51905e1e4c31cc1234206d7f9845754 100644 --- a/apps/ministreaming/java/src/net/i2p/client/streaming/StreamSinkClient.java +++ b/apps/ministreaming/java/src/net/i2p/client/streaming/StreamSinkClient.java @@ -18,7 +18,7 @@ import net.i2p.util.Log; /** * Simple streaming lib test app that connects to a given destination and sends - * it a particular amount of random data, then disconnects. See the {@link main} + * it a particular amount of random data, then disconnects. See the {@link #main} * */ public class StreamSinkClient {