forked from I2P_Developers/i2p.i2p
lint
This commit is contained in:
@@ -70,7 +70,7 @@ public class Ed25519LittleEndianEncoding extends Encoding {
|
||||
|
||||
// Step 1:
|
||||
// Calculate q
|
||||
q = (19 * h9 + (((int) 1) << 24)) >> 25;
|
||||
q = (19 * h9 + (1 << 24)) >> 25;
|
||||
q = (h0 + q) >> 26;
|
||||
q = (h1 + q) >> 25;
|
||||
q = (h2 + q) >> 26;
|
||||
|
@@ -337,7 +337,7 @@ public class I2PSSLSocketFactory {
|
||||
return enabledArr;
|
||||
}
|
||||
if (log.shouldLog(Log.DEBUG)) {
|
||||
List<String> foo = new ArrayList(selected);
|
||||
List<String> foo = new ArrayList<String>(selected);
|
||||
Collections.sort(foo);
|
||||
log.debug("Selected: " + foo);
|
||||
}
|
||||
|
Reference in New Issue
Block a user