Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / util / TypeToClassKey.java
index 098f932259dd7ae0d9ee41bf527d6463abe1e381..0f6b9cafb5f3e0319649a1a4ba739209ba643266 100644 (file)
@@ -1,57 +1,57 @@
-/*\r
- * Copyright (c) 2013 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
-package org.opendaylight.openflowjava.protocol.impl.util;\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public class TypeToClassKey {\r
-\r
-    private short version;\r
-    private int type;\r
-\r
-    /**\r
-     * Constructor\r
-     * @param version wire protocol version\r
-     * @param type message type / code\r
-     */\r
-    public TypeToClassKey(short version, int type) {\r
-        this.version = version;\r
-        this.type = type;\r
-    }\r
-\r
-    @Override\r
-    public int hashCode() {\r
-        final int prime = 31;\r
-        int result = 1;\r
-        result = prime * result + type;\r
-        return result;\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object obj) {\r
-        if (this == obj) {\r
-            return true;\r
-        }\r
-        if (obj == null) {\r
-            return false;\r
-        }\r
-        if (getClass() != obj.getClass()) {\r
-            return false;\r
-        }\r
-        TypeToClassKey other = (TypeToClassKey) obj;\r
-        if (type != other.type) {\r
-            return false;\r
-        }\r
-        if (version != other.version) {\r
-            return false;\r
-        }\r
-        return true;\r
-    }\r
+/*
+ * Copyright (c) 2013 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.impl.util;
+
+/**
+ * @author michal.polkorab
+ *
+ */
+public class TypeToClassKey {
+
+    private short version;
+    private int type;
+
+    /**
+     * Constructor
+     * @param version wire protocol version
+     * @param type message type / code
+     */
+    public TypeToClassKey(short version, int type) {
+        this.version = version;
+        this.type = type;
+    }
+
+    @Override
+    public int hashCode() {
+        final int prime = 31;
+        int result = 1;
+        result = prime * result + type;
+        return result;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj) {
+            return true;
+        }
+        if (obj == null) {
+            return false;
+        }
+        if (getClass() != obj.getClass()) {
+            return false;
+        }
+        TypeToClassKey other = (TypeToClassKey) obj;
+        if (type != other.type) {
+            return false;
+        }
+        if (version != other.version) {
+            return false;
+        }
+        return true;
+    }
 }
\ No newline at end of file