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

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

micro-optimization

parent fd25ead0
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ public class TunnelId extends DataStructureImpl {
public boolean equals(Object obj) {
if ( (obj == null) || !(obj instanceof TunnelId))
return false;
return _tunnelId == ((TunnelId)obj).getTunnelId();
return _tunnelId == ((TunnelId)obj)._tunnelId;
}
@Override
......
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