forked from I2P_Developers/i2p.i2p
@ -18,10 +18,10 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 10;
|
||||
public final static long BUILD = 11;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
public final static String EXTRA = "-rc";
|
||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + FULL_VERSION);
|
||||
|
@ -64,9 +64,8 @@ class Reader {
|
||||
already = true;
|
||||
} else {
|
||||
_pendingConnections.add(con);
|
||||
// only notify here if added?
|
||||
_pendingConnections.notify();
|
||||
}
|
||||
_pendingConnections.notify();
|
||||
}
|
||||
if (_log.shouldLog(Log.DEBUG))
|
||||
_log.debug("wantsRead: " + con + " already live? " + already);
|
||||
|
@ -62,9 +62,8 @@ class Writer {
|
||||
already = true;
|
||||
} else {
|
||||
pending = _pendingConnections.add(con);
|
||||
// only notify here if added?
|
||||
_pendingConnections.notify();
|
||||
}
|
||||
_pendingConnections.notify();
|
||||
}
|
||||
if (_log.shouldLog(Log.DEBUG))
|
||||
_log.debug("wantsWrite: " + con + " already live? " + already + " added to pending? " + pending + ": " + source);
|
||||
|
Reference in New Issue
Block a user