diff --git a/apps/routerconsole/java/src/edu/internet2/ndt/OsfwWorker.java b/apps/routerconsole/java/src/edu/internet2/ndt/OsfwWorker.java index c9d1f11bf..2eb4bbf98 100644 --- a/apps/routerconsole/java/src/edu/internet2/ndt/OsfwWorker.java +++ b/apps/routerconsole/java/src/edu/internet2/ndt/OsfwWorker.java @@ -7,7 +7,7 @@ import java.net.Socket; /** * OsfwWorker creates a thread that listens for a message from the server. It * functions to check if the server has sent a message that is valid and - * sufficient to determine if the server->client direction has a fire-wall. + * sufficient to determine if the server->client direction has a fire-wall. * *
* As part of the simple firewall test, the Server must try to connect to the
@@ -49,7 +49,7 @@ public class OsfwWorker implements Runnable {
* @param iParamTestTime
* Test time duration to wait for message from server
* @param _localParam
- * Applet object used to set the result of the S->C firewall test
+ * Applet object used to set the result of the S->C firewall test
*/
OsfwWorker(ServerSocket srvSocketParam, int iParamTestTime,
Tcpbw100 _localParam) {
@@ -76,7 +76,7 @@ public class OsfwWorker implements Runnable {
/**
* run() method of this SFW Worker thread. This thread listens on the socket
* from the server for a given time period, and checks to see if the server
- * has sent a message that is valid and sufficient to determine if the S->C
+ * has sent a message that is valid and sufficient to determine if the S->C
* direction has a fire-wall.
* */
public void run() {
diff --git a/apps/routerconsole/java/src/edu/internet2/ndt/Tcpbw100.java b/apps/routerconsole/java/src/edu/internet2/ndt/Tcpbw100.java
index 6812fa6e2..e3100b76c 100644
--- a/apps/routerconsole/java/src/edu/internet2/ndt/Tcpbw100.java
+++ b/apps/routerconsole/java/src/edu/internet2/ndt/Tcpbw100.java
@@ -563,38 +563,38 @@ public class Tcpbw100 extends JApplet implements ActionListener {
}
/**
- * Get Client->Server fire-wall test results.
+ * Get Client->Server fire-wall test results.
*
- * @return integer indicating C->S test results
+ * @return integer indicating C->S test results
* */
public int getC2sSFWTestResults() {
return this._iC2sSFWResult;
}
/**
- * Set Client->Server fire-wall test results.
+ * Set Client->Server fire-wall test results.
*
* @param iParamC2SRes
- * integer indicating C->S test results
+ * integer indicating C->S test results
* */
public void setC2sSFWTestResults(int iParamC2SRes) {
this._iC2sSFWResult = iParamC2SRes;
}
/**
- * Get Server->Client fire-wall test results.
+ * Get Server->Client fire-wall test results.
*
- * @return integer indicating C->S test results
+ * @return integer indicating C->S test results
* */
public int getS2cSFWTestResults() {
return this._iS2cSFWResult;
}
/**
- * Set server->Client fire-wall test results.
+ * Set server->Client fire-wall test results.
*
* @param iParamS2CRes
- * integer indicating C->S test results
+ * integer indicating C->S test results
* */
public void setS2cSFWTestResults(int iParamS2CRes) {
this._iS2cSFWResult = iParamS2CRes;
@@ -4548,7 +4548,7 @@ public class Tcpbw100 extends JApplet implements ActionListener {
try {
t.interrupt();
} catch (RuntimeException re) {
- _log.warn("TG", re);
+ _log.debug("TG", re);
}
try {
Thread.sleep(20);
@@ -4559,7 +4559,7 @@ public class Tcpbw100 extends JApplet implements ActionListener {
try {
t.stop();
} catch (RuntimeException re) {
- _log.warn("TG", re);
+ _log.debug("TG", re);
}
}
}
@@ -4571,7 +4571,7 @@ public class Tcpbw100 extends JApplet implements ActionListener {
thread_group.destroy();
break;
}catch( Throwable e ){
- _log.warn("TG", e);
+ _log.debug("TG", e);
}
}
diff --git a/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PServerSocketFull.java b/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PServerSocketFull.java
index 28b615370..f5595182f 100644
--- a/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PServerSocketFull.java
+++ b/apps/streaming/java/src/net/i2p/client/streaming/impl/I2PServerSocketFull.java
@@ -30,7 +30,7 @@ class I2PServerSocketFull implements I2PServerSocket {
*
* @throws I2PException if there is a problem with reading a new socket
* from the data available (e.g. the I2PSession is closed)
- * @throws RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.34
+ * @throws net.i2p.client.streaming.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
* @throws SocketTimeoutException if a timeout was previously set with setSoTimeout and the timeout has been reached.
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 66ca1b491..48d125e77 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
@@ -350,7 +350,7 @@ public class I2PSocketManagerFull implements I2PSocketManager {
*
* @return connected I2PSocket, or null through 0.9.16, non-null as of 0.9.17
* @throws I2PException if session is closed
- * @throws RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.34
+ * @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.
*/
diff --git a/core/java/src/org/json/simple/ItemList.java b/core/java/src/org/json/simple/ItemList.java
index 3d1213a11..a9504f058 100644
--- a/core/java/src/org/json/simple/ItemList.java
+++ b/core/java/src/org/json/simple/ItemList.java
@@ -9,10 +9,10 @@ import java.util.List;
import java.util.StringTokenizer;
/**
- * |a:b:c| => |a|,|b|,|c|
- * |:| => ||,||
- * |a:| => |a|,||
- * @author FangYidong