Console: Don't force profile creation when loading floodfill tab

Don't show negative times
Sybil tool: tweaks
TunnelRenderer: minor cleanup
This commit is contained in:
zzz
2015-12-06 16:47:34 +00:00
parent 826bb54984
commit b6e8431bce
3 changed files with 10 additions and 9 deletions

View File

@@ -46,12 +46,10 @@ public class TunnelRenderer {
boolean isLocal = _context.clientManager().isLocal(client);
if ((!isLocal) && (!debug))
continue;
TunnelPool in = null;
TunnelPool outPool = null;
in = clientInboundPools.get(client);
outPool = clientOutboundPools.get(client);
TunnelPool in = clientInboundPools.get(client);
TunnelPool outPool = clientOutboundPools.get(client);
// TODO the following code is duplicated in SummaryHelper
String name = (in != null ? in.getSettings().getDestinationNickname() : null);
String name = (in != null) ? in.getSettings().getDestinationNickname() : null;
if ( (name == null) && (outPool != null) )
name = outPool.getSettings().getDestinationNickname();
if (name == null)