Remove trailing whitespace
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / extensibility / MessageTypeKey.java
index 2e1d01890e084d1253bd1a637aa957f9dccb0655..bf45cd105112e557521eb18ccefdaa4d59146ef3 100644 (file)
@@ -19,7 +19,7 @@ public class MessageTypeKey<E> {
 
     private final Class<? extends E> msgType;
     private final short msgVersion;
-    
+
     /**
      * @param msgVersion protocol version
      * @param msgType type of message - class of serialized object
@@ -28,7 +28,7 @@ public class MessageTypeKey<E> {
         this.msgType = msgType;
         this.msgVersion = msgVersion;
     }
-    
+
     @Override
     public String toString() {
         return "msgVersion: " + msgVersion + " objectType: " + msgType.getName();