forked from I2P_Developers/i2p.i2p
I2PTunnel: fix my own stupid bug in I2PTunnelConnectClient
This commit is contained in:
@@ -170,7 +170,7 @@ public class I2PTunnelConnectClient extends I2PTunnelHTTPClientBase implements R
|
|||||||
// since we are passing the stream on to I2PTunnelRunner
|
// since we are passing the stream on to I2PTunnelRunner
|
||||||
line = DataHelper.readLine(in);
|
line = DataHelper.readLine(in);
|
||||||
if(line == null) {
|
if(line == null) {
|
||||||
line = ''; // prevent NPE, Is this what we need to do?
|
line = ""; // prevent NPE, Is this what we need to do?
|
||||||
}
|
}
|
||||||
line = line.trim();
|
line = line.trim();
|
||||||
if (_log.shouldLog(Log.DEBUG))
|
if (_log.shouldLog(Log.DEBUG))
|
||||||
|
@@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 8;
|
public final static long BUILD = 9;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user