forked from I2P_Developers/i2p.i2p
findbugs all over
This commit is contained in:
@@ -228,7 +228,7 @@ public class RouterKeyGenerator extends RoutingKeyGenerator {
|
||||
long now = System.currentTimeMillis();
|
||||
int st = 0;
|
||||
if (args.length > 1 && (args[0].startsWith("+") || args[0].startsWith("-"))) {
|
||||
now += Integer.parseInt(args[0]) * 24*60*60*1000L;
|
||||
now += Integer.parseInt(args[0]) * (24*60*60*1000L);
|
||||
st++;
|
||||
}
|
||||
RouterKeyGenerator rkg = new RouterKeyGenerator(I2PAppContext.getGlobalContext());
|
||||
|
||||
@@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 0;
|
||||
public final static long BUILD = 1;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
||||
@@ -462,7 +462,6 @@ public class WorkingDir {
|
||||
if (!src.exists()) return false;
|
||||
boolean rv = true;
|
||||
|
||||
byte buf[] = new byte[4096];
|
||||
FileInputStream in = null;
|
||||
FileOutputStream out = null;
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user