forked from I2P_Developers/i2p.i2p
- Better serializer error handling and logging
- Automatic corruption repair in blockfile - Automatic removal of bad entries in BFNS - Use unsigned shorts to extend max lengths to 65535 - Check max length - Throw IOE on negative ints - Tweak fromProperties() exceptions - Fix DataHelper encoding issues (ticket #436) - CSS tweaks
This commit is contained in:
@@ -66,11 +66,11 @@ li {
|
||||
}
|
||||
|
||||
tr.list1 {
|
||||
background-color:#E0E0E0;
|
||||
background-color:#E8E8EC;
|
||||
}
|
||||
|
||||
tr.list0 {
|
||||
background-color:white;
|
||||
background-color:#F0F0F4;
|
||||
}
|
||||
|
||||
p.messages {
|
||||
|
@@ -183,7 +183,12 @@ public class NamingServiceBean extends AddressbookBean
|
||||
}
|
||||
}
|
||||
String destination = entry.getValue().toBase64();
|
||||
list.addLast( new AddressBean( name, destination ) );
|
||||
if (destination != null) {
|
||||
list.addLast( new AddressBean( name, destination ) );
|
||||
} else {
|
||||
// delete it too?
|
||||
System.err.println("Bad entry " + name + " in database " + service.getName());
|
||||
}
|
||||
}
|
||||
AddressBean array[] = list.toArray(new AddressBean[list.size()]);
|
||||
Arrays.sort( array, sorter );
|
||||
|
Reference in New Issue
Block a user