James Moger
2011-06-01 a1ea877042b93949ef244b96e8affd65cc3f89c1
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;
   }