Remove trailing whitespace
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / InstructionDeserializerKey.java
index c21608780b272208a59f09190dd10423c8aae0d4..cb08cd92bbe53e4b5f3b855287b11bf942928bde 100644 (file)
@@ -1,66 +1,66 @@
-/*\r
- * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.openflowjava.protocol.api.keys;\r
-\r
-import org.opendaylight.openflowjava.protocol.api.extensibility.MessageCodeKey;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.Instruction;\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public class InstructionDeserializerKey extends MessageCodeKey {\r
-\r
-    private Long experimenterId;\r
-    /**\r
-     * @param version protocol wire version\r
-     * @param type instruction type\r
-     * @param experimenterId \r
-     */\r
-    public InstructionDeserializerKey(short version, int type,\r
-            Long experimenterId) {\r
-        super(version, type, Instruction.class);\r
-        this.experimenterId = experimenterId;\r
-    }\r
-\r
-    @Override\r
-    public int hashCode() {\r
-        final int prime = 31;\r
-        int result = super.hashCode();\r
-        result = prime * result + ((experimenterId == null) ? 0 : experimenterId.hashCode());\r
-        return result;\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object obj) {\r
-        if (this == obj) {\r
-            return true;\r
-        }\r
-        if (!super.equals(obj)) {\r
-            return false;\r
-        }\r
-        if (!(obj instanceof InstructionDeserializerKey)) {\r
-            return false;\r
-        }\r
-        InstructionDeserializerKey other = (InstructionDeserializerKey) obj;\r
-        if (experimenterId == null) {\r
-            if (other.experimenterId != null) {\r
-                return false;\r
-            }\r
-        } else if (!experimenterId.equals(other.experimenterId)) {\r
-            return false;\r
-        }\r
-        return true;\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        return super.toString() + " experimenterID: " + experimenterId;\r
-    }\r
+/*
+ * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.openflowjava.protocol.api.keys;
+
+import org.opendaylight.openflowjava.protocol.api.extensibility.MessageCodeKey;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.Instruction;
+
+/**
+ * @author michal.polkorab
+ *
+ */
+public class InstructionDeserializerKey extends MessageCodeKey {
+
+    private Long experimenterId;
+    /**
+     * @param version protocol wire version
+     * @param type instruction type
+     * @param experimenterId
+     */
+    public InstructionDeserializerKey(short version, int type,
+            Long experimenterId) {
+        super(version, type, Instruction.class);
+        this.experimenterId = experimenterId;
+    }
+
+    @Override
+    public int hashCode() {
+        final int prime = 31;
+        int result = super.hashCode();
+        result = prime * result + ((experimenterId == null) ? 0 : experimenterId.hashCode());
+        return result;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj) {
+            return true;
+        }
+        if (!super.equals(obj)) {
+            return false;
+        }
+        if (!(obj instanceof InstructionDeserializerKey)) {
+            return false;
+        }
+        InstructionDeserializerKey other = (InstructionDeserializerKey) obj;
+        if (experimenterId == null) {
+            if (other.experimenterId != null) {
+                return false;
+            }
+        } else if (!experimenterId.equals(other.experimenterId)) {
+            return false;
+        }
+        return true;
+    }
+
+    @Override
+    public String toString() {
+        return super.toString() + " experimenterID: " + experimenterId;
+    }
 }
\ No newline at end of file