diff options
Diffstat (limited to 'src/com/gitblit/utils/ByteFormat.java')
-rw-r--r-- | src/com/gitblit/utils/ByteFormat.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/gitblit/utils/ByteFormat.java b/src/com/gitblit/utils/ByteFormat.java index fee645c7..97b77bde 100644 --- a/src/com/gitblit/utils/ByteFormat.java +++ b/src/com/gitblit/utils/ByteFormat.java @@ -26,7 +26,7 @@ public class ByteFormat extends Format { public ByteFormat() { } - + public String format(long value) { return format(new Long(value)); } @@ -51,7 +51,7 @@ public class ByteFormat extends Format { } return buf; } - + public Object parseObject(String source, ParsePosition pos) { return null; } |