]> source.dussan.org Git - gitblit.git/commitdiff
ByteFormat now returns integer KB values.
authorJames Moger <james.moger@gitblit.com>
Mon, 11 Jul 2011 20:16:35 +0000 (16:16 -0400)
committerJames Moger <james.moger@gitblit.com>
Mon, 11 Jul 2011 20:16:35 +0000 (16:16 -0400)
src/com/gitblit/utils/ByteFormat.java

index f4c05cd52c644b4b2a4345160163f7a52a9208cb..cb7da885b150cae14c31d1d7348d8ff6b9d9a67e 100644 (file)
@@ -45,7 +45,7 @@ public class ByteFormat extends Format {
                                DecimalFormat formatter = new DecimalFormat("#,##0");
                                buf.append(formatter.format((double) numBytes)).append(" b");
                        } else if (numBytes < 1024 * 1024) {
-                               DecimalFormat formatter = new DecimalFormat("#,##0.0");
+                               DecimalFormat formatter = new DecimalFormat("#,##0");
                                buf.append(formatter.format((double) numBytes / 1024.0)).append(" KB");
                        } else if (numBytes < 1024 * 1024 * 1024) {
                                DecimalFormat formatter = new DecimalFormat("#,##0.0");