diff --git a/src/com/wentch/redkale/util/Utility.java b/src/com/wentch/redkale/util/Utility.java index a9af4857f..28df970e3 100644 --- a/src/com/wentch/redkale/util/Utility.java +++ b/src/com/wentch/redkale/util/Utility.java @@ -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(']');