James Moger
2011-06-18 669686f6118544bf2122f1e7f3e39c5dbc9654f5
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;
   }