Fix CS warnings in sal-remoterpc-connector and enable enforcement
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / messages / UpdateSchemaContext.java
index 83fc7723b328968c160ddeffa22aba48fa61d541..68302c5c395e7ca29c9449c43d0b19a08a55fc6d 100644 (file)
@@ -11,14 +11,13 @@ package org.opendaylight.controller.remote.rpc.messages;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
 public class UpdateSchemaContext {
+    private final SchemaContext schemaContext;
 
-  private final SchemaContext schemaContext;
+    public UpdateSchemaContext(final SchemaContext schemaContext) {
+        this.schemaContext = schemaContext;
+    }
 
-  public UpdateSchemaContext(final SchemaContext schemaContext) {
-    this.schemaContext = schemaContext;
-  }
-
-  public SchemaContext getSchemaContext() {
-    return schemaContext;
-  }
+    public SchemaContext getSchemaContext() {
+        return schemaContext;
+    }
 }