Switch to side-by-side view

--- a/tool/src/spdxlib/DocumentCreate.java
+++ b/tool/src/spdxlib/DocumentCreate.java
@@ -141,8 +141,12 @@
             filePath = "." + filePath.replace(thisFile.getName(), "");
             
             // the size of this file
-            String fileSize = utils.files.humanReadableSize(thisFile.length())
-                    + " ("+ thisFile.length() +" bytes)";
+            String fileSize = utils.files.humanReadableSize(thisFile.length());
+            
+            // only add up this info when making the size human readable
+            if(thisFile.length() > 1000){
+                   fileSize +=  " ("+ thisFile.length() +" bytes)";
+            }
             
             // do the file identification
             String LOC = "";