Fix CS warnings in sal-clustering-commons and enable enforcement
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / serialization / ValueType.java
index 0015a06149ffe84f6a180f8971ed3bd461d30248..fe0c97b77f2bb8bf70a9df629719cef83c972b2b 100644 (file)
@@ -120,7 +120,7 @@ public enum ValueType {
     abstract Object deserialize(String str);
 
     public static final ValueType getSerializableType(Object node) {
-        if(node == null){
+        if (node == null) {
             return NULL_TYPE;
         }