You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2013/11/06 01:25:26 UTC

git commit: Address error-prone self-equals warning

Updated Branches:
  refs/heads/master 6c5effcdb -> c215d123c


Address error-prone self-equals warning


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/c215d123
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/c215d123
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/c215d123

Branch: refs/heads/master
Commit: c215d123c463fca062bdcd9f45544f5617c12b16
Parents: 6c5effc
Author: Andrew Gaul <ga...@apache.org>
Authored: Tue Nov 5 16:24:50 2013 -0800
Committer: Andrew Gaul <ga...@apache.org>
Committed: Tue Nov 5 16:24:50 2013 -0800

----------------------------------------------------------------------
 .../src/main/java/org/jclouds/vcloud/domain/network/IpScope.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/c215d123/apis/vcloud/src/main/java/org/jclouds/vcloud/domain/network/IpScope.java
----------------------------------------------------------------------
diff --git a/apis/vcloud/src/main/java/org/jclouds/vcloud/domain/network/IpScope.java b/apis/vcloud/src/main/java/org/jclouds/vcloud/domain/network/IpScope.java
index ce9a852..bdd9671 100644
--- a/apis/vcloud/src/main/java/org/jclouds/vcloud/domain/network/IpScope.java
+++ b/apis/vcloud/src/main/java/org/jclouds/vcloud/domain/network/IpScope.java
@@ -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