Add ConfigMemorySize.toString

This commit is contained in:
Havoc Pennington 2015-02-25 20:53:34 -05:00
parent 5a2b0b7380
commit 2e43d9b21c

View File

@ -32,6 +32,11 @@ public final class ConfigMemorySize {
return bytes;
}
@Override
public String toString() {
return "ConfigMemorySize(" + bytes + ")";
}
@Override
public boolean equals(Object other) {
if (other instanceof ConfigMemorySize) {