another oOo catch (not sure if this is ever run - it shouldn't be, but now it'll display the silly statement more clearly :)

This commit is contained in:
jrandom
2004-08-10 04:52:48 +00:00
committed by zzz
parent 8627328047
commit 97e5952544

View File

@@ -732,7 +732,7 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
if (age > 0)
buf.append("Published: <i>").append(DataHelper.formatDuration(age)).append(" ago</i><br />\n");
else
buf.append("Published: <i>in ").append(DataHelper.formatDuration(age)).append("???</i><br />\n");
buf.append("Published: <i>in ").append(DataHelper.formatDuration(0-age)).append("???</i><br />\n");
buf.append("Address(es): <i>");
for (Iterator iter = info.getAddresses().iterator(); iter.hasNext(); ) {
RouterAddress addr = (RouterAddress)iter.next();