Address error-prone self-equals warning

This commit is contained in:
Andrew Gaul 2013-11-05 16:24:50 -08:00
parent 6c5effcdb1
commit c215d123c4
1 changed files with 3 additions and 1 deletions

View File

@ -147,7 +147,9 @@ public class IpScope {
IpScope that = IpScope.class.cast(o);
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.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