Dieser Commit ist enthalten in:
Ursprung
bb601245f9
Commit
2dcddd9cc2
@ -63,7 +63,7 @@ public class NodeDownload {
|
|||||||
public static String base16encode(byte[] byteArray) {
|
public static String base16encode(byte[] byteArray) {
|
||||||
StringBuilder hexBuffer = new StringBuilder(byteArray.length * 2);
|
StringBuilder hexBuffer = new StringBuilder(byteArray.length * 2);
|
||||||
for (byte b : byteArray)
|
for (byte b : byteArray)
|
||||||
hexBuffer.append(HEX[b >> 4]).append(HEX[b & 0xF]);
|
hexBuffer.append(HEX[b >>> 4]).append(HEX[b & 0xF]);
|
||||||
return hexBuffer.toString();
|
return hexBuffer.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren