Fix checkstyle violations in applications
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / util / FlowDescriptor.java
index 676cd9221e2a0eaf6f6dd2e0e641d505eb1b30ee..af4aaffbadcfce00512ad8d9c0add151eaf35bc9 100644 (file)
@@ -25,15 +25,15 @@ public class FlowDescriptor {
     }
 
     @Override
-    public boolean equals(Object o) {
-        if (this == o) {
+    public boolean equals(Object obj) {
+        if (this == obj) {
             return true;
         }
-        if (o == null || getClass() != o.getClass()) {
+        if (obj == null || getClass() != obj.getClass()) {
             return false;
         }
 
-        FlowDescriptor that = (FlowDescriptor) o;
+        FlowDescriptor that = (FlowDescriptor) obj;
         if (flowId != null ? !flowId.equals(that.flowId) : that.flowId != null) {
             return false;
         }