src/com/gitblit/utils/ByteFormat.java
@@ -26,9 +26,9 @@ public ByteFormat() { } public String format(long value) { return format(new Long(value)); return format(Long.valueOf(value)); } public StringBuffer format(Object obj, StringBuffer buf, FieldPosition pos) { @@ -51,7 +51,7 @@ } return buf; } public Object parseObject(String source, ParsePosition pos) { return null; }