This commit is contained in:
@@ -78,7 +78,7 @@ public final class Utility {
|
|||||||
public static void println(byte... bytes) {
|
public static void println(byte... bytes) {
|
||||||
if (bytes == null) return;
|
if (bytes == null) return;
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append('[');
|
sb.append(bytes.length).append(".[");
|
||||||
for (byte b : bytes) {
|
for (byte b : bytes) {
|
||||||
if (sb.length() > 1) sb.append(',');
|
if (sb.length() > 1) sb.append(',');
|
||||||
int v = b & 0xff;
|
int v = b & 0xff;
|
||||||
|
|||||||
Reference in New Issue
Block a user