Author: juiceman
Date: 2007-05-21 01:13:21 +0000 (Mon, 21 May 2007)
New Revision: 13289
Modified:
trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
Log:
Spacing
Modified: trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
2007-05-21 01:09:05 UTC (rev 13288)
+++ trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
2007-05-21 01:13:21 UTC (rev 13289)
@@ -379,19 +379,19 @@
// (It's a public static constant, so it will use the version
from compile time of freenet.jar)
storeSizeList.addChild("li",
- "Cached keys: " +
thousendPoint.format(cachedKeys) +
- " (" + SizeUtil.formatSize(cachedSize, true) +
')' +
- " (" + ((cachedKeys*100)/maxCachedKeys) + "%)");
+ "Cached keys:\u00a0" +
thousendPoint.format(cachedKeys) +
+ "\u00a0(" + SizeUtil.formatSize(cachedSize,
true) + ')' +
+ "\u00a0(" + ((cachedKeys*100)/maxCachedKeys) +
"%)");
storeSizeList.addChild("li",
"Stored keys:\u00a0" +
thousendPoint.format(storeKeys) +
- " (" + SizeUtil.formatSize(storeSize, true) +
')' +
- " (" + ((storeKeys*100)/maxStoreKeys) + "%)");
+ "\u00a0(" + SizeUtil.formatSize(storeSize,
true) + ')' +
+ "\u00a0(" + ((storeKeys*100)/maxStoreKeys) +
"%)");
storeSizeList.addChild("li",
"Overall size:\u00a0" +
thousendPoint.format(overallKeys) +
"\u00a0/\u00a0" +
thousendPoint.format(maxOverallKeys) +
- " (" + SizeUtil.formatSize(overallSize, true) +
+ "\u00a0(" + SizeUtil.formatSize(overallSize,
true) +
"\u00a0/\u00a0" +
SizeUtil.formatSize(maxOverallSize, true) +
")\u00a0(" + ((overallKeys*100)/maxOverallKeys)
+ "%)");