I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 62413331 authored by zzz's avatar zzz
Browse files

Fix bug in last checkin in unused code

(thx zab)
parent 68d25afc
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment