* Tiny readability fix: separate value and unit with a space.

This commit is contained in:
complication
2010-10-26 23:38:01 +00:00
parent ac3e6e27dc
commit f239d4f350

View File

@ -112,7 +112,7 @@ public class TunnelRenderer {
if (lifetime > 10*60)
lifetime = 10*60;
int bps = 1024 * (int) cfg.getProcessedMessagesCount() / lifetime;
out.write("<td class=\"cells\" align=\"center\">" + bps + "Bps</td>");
out.write("<td class=\"cells\" align=\"center\">" + bps + " Bps</td>");
if (cfg.getSendTo() == null)
out.write("<td class=\"cells\" align=\"center\">" + _("Outbound Endpoint") + "</td>");
else if (cfg.getReceiveFrom() == null)