forked from I2P_Developers/i2p.i2p
2005-12-19 jrandom
* Fix for old Syndie blog bookmarks (thanks Complication!) * Fix for I2PSnark to accept incoming connections again (oops) * Randomize the order that peers from the tracker are contacted
This commit is contained in:
@ -33,7 +33,7 @@ public class PetNameDB {
|
||||
public boolean isEmpty() { return _names.isEmpty(); }
|
||||
public Iterator iterator() { return new ArrayList(_names.values()).iterator(); }
|
||||
public void remove(PetName pn) {
|
||||
if (pn != null) _names.remove(pn.getName());
|
||||
if (pn != null) _names.remove(pn.getName().toLowerCase());
|
||||
}
|
||||
public void removeName(String name) {
|
||||
if (name != null) _names.remove(name.toLowerCase());
|
||||
|
Reference in New Issue
Block a user