forked from I2P_Developers/i2p.i2p
micro-optimization
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user