This commit is contained in:
wentch
2015-12-16 17:19:43 +08:00
parent c2a1ad0100
commit 322a102229

View File

@@ -71,6 +71,7 @@ public final class DLong extends Number implements Comparable<DLong> {
@Override
public String toString() {
if(this == ZERO) return "0";
return new String(Utility.binToHex(bytes));
}