Author: toad
Date: 2007-04-13 19:27:45 +0000 (Fri, 13 Apr 2007)
New Revision: 12654

Modified:
   trunk/freenet/src/freenet/support/StringCounter.java
Log:
Include a space and put the count first for the rejection reasons table

Modified: trunk/freenet/src/freenet/support/StringCounter.java
===================================================================
--- trunk/freenet/src/freenet/support/StringCounter.java        2007-04-13 
19:23:53 UTC (rev 12653)
+++ trunk/freenet/src/freenet/support/StringCounter.java        2007-04-13 
19:27:45 UTC (rev 12654)
@@ -82,8 +82,8 @@
                for(int i=0;i<items.length;i++) {
                        Item it = items[i];
                        HTMLNode row = table.addChild("tr");
+                       row.addChild("td", 
Integer.toString(it.counter)+"\u00a0");
                        row.addChild("td", it.string);
-                       row.addChild("td", Integer.toString(it.counter));
                }
        }



Reply via email to