forked from I2P_Developers/i2p.i2p
Fix bug in last checkin in unused code
(thx zab)
This commit is contained in:
@@ -61,7 +61,7 @@ public class RequestLeaseSetMessage extends I2CPMessageImpl {
|
||||
|
||||
/** @deprecated unused - presumably he meant remove? */
|
||||
public void remoteEndpoint(int endpoint) {
|
||||
if ((endpoint >= 0) && (endpoint <= _endpoints.size())) _endpoints.remove(endpoint);
|
||||
if ((endpoint >= 0) && (endpoint < _endpoints.size())) _endpoints.remove(endpoint);
|
||||
}
|
||||
|
||||
public void addEndpoint(Hash router, TunnelId tunnel) {
|
||||
|
||||
Reference in New Issue
Block a user