This commit is contained in:
地平线
2015-07-02 11:57:04 +08:00
parent 15d9890f86
commit 44879091d6

View File

@@ -82,7 +82,7 @@ public final class Utility {
for (byte b : bytes) {
if (sb.length() > 1) sb.append(',');
int v = b & 0xff;
if (v < 10) sb.append('0');
if (v < 16) sb.append('0');
sb.append(Integer.toHexString(v));
}
sb.append(']');