mdsalutil-api clean up Checkstyle violations (not enforced yet)
[genius.git] / mdsalutil / mdsalutil-api / src / main / java / org / opendaylight / genius / mdsalutil / matches / MatchArpOp.java
index 172434b7e41154b5625d4228097c402659500529..737ba3d607a2517d62e114c371d9d3f9892a89c5 100644 (file)
@@ -40,12 +40,18 @@ public class MatchArpOp extends MatchInfoHelper<ArpMatch, ArpMatchBuilder> {
     }
 
     @Override
-    public boolean equals(Object o) {
-        if (this == o) return true;
-        if (o == null || getClass() != o.getClass()) return false;
-        if (!super.equals(o)) return false;
+    public boolean equals(Object other) {
+        if (this == other) {
+            return true;
+        }
+        if (other == null || getClass() != other.getClass()) {
+            return false;
+        }
+        if (!super.equals(other)) {
+            return false;
+        }
 
-        MatchArpOp that = (MatchArpOp) o;
+        MatchArpOp that = (MatchArpOp) other;
 
         return op == that.op;
     }