mirror of https://github.com/apache/jclouds.git
Address error-prone self-equals warning
This commit is contained in:
parent
6c5effcdb1
commit
c215d123c4
|
@ -147,7 +147,9 @@ public class IpScope {
|
||||||
IpScope that = IpScope.class.cast(o);
|
IpScope that = IpScope.class.cast(o);
|
||||||
return equal(this.inherited, that.inherited) && equal(this.gateway, that.gateway)
|
return equal(this.inherited, that.inherited) && equal(this.gateway, that.gateway)
|
||||||
&& equal(this.netmask, that.netmask) && equal(this.dns1, that.dns1) && equal(this.dns2, that.dns2)
|
&& equal(this.netmask, that.netmask) && equal(this.dns1, that.dns1) && equal(this.dns2, that.dns2)
|
||||||
&& equal(this.dnsSuffix, that.dnsSuffix) && equal(this.ipRanges, ipRanges) && equal(this.allocatedIpAddresses, allocatedIpAddresses);
|
&& equal(this.dnsSuffix, that.dnsSuffix)
|
||||||
|
&& equal(this.ipRanges, that.ipRanges)
|
||||||
|
&& equal(this.allocatedIpAddresses, that.allocatedIpAddresses);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue