From 1f9daef870a8c7a984955166a542628d69012ed5 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Fri, 27 May 2011 23:37:24 -0400
Subject: [PATCH] Codepro analyze dependencies. Documentation.

---
 src/com/gitblit/utils/ByteFormat.java |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/com/gitblit/utils/ByteFormat.java b/src/com/gitblit/utils/ByteFormat.java
index f4cc278..92a8e46 100644
--- a/src/com/gitblit/utils/ByteFormat.java
+++ b/src/com/gitblit/utils/ByteFormat.java
@@ -32,8 +32,6 @@
 	public ByteFormat() {
 	}
 
-	// Implemented from the Format class
-
 	/**
 	 * Formats a long which represent a number of bytes.
 	 */
@@ -73,7 +71,8 @@
 				buf.append(formatter.format((double) numBytes / (1024.0 * 1024.0))).append(" MB");
 			} else {
 				DecimalFormat formatter = new DecimalFormat("#,##0.0");
-				buf.append(formatter.format((double) numBytes / (1024.0 * 1024.0 * 1024.0))).append(" GB");
+				buf.append(formatter.format((double) numBytes / (1024.0 * 1024.0 * 1024.0)))
+						.append(" GB");
 			}
 		}
 		return buf;

--
Gitblit v1.9.1