Fix warnings/javadocs in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / UpdateSchemaContext.java
index 47f9ea8c4fadcae48d6d2ffeb5527e2b2da51ffd..16f49e278a90ef65671874e4d34defd896d96357 100644 (file)
@@ -11,13 +11,13 @@ package org.opendaylight.controller.cluster.datastore.messages;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
 public class UpdateSchemaContext {
-  private final SchemaContext schemaContext;
+    private final SchemaContext schemaContext;
 
-  public UpdateSchemaContext(SchemaContext schemaContext) {
-    this.schemaContext = schemaContext;
-  }
+    public UpdateSchemaContext(SchemaContext schemaContext) {
+        this.schemaContext = schemaContext;
+    }
 
-  public SchemaContext getSchemaContext() {
-    return schemaContext;
-  }
+    public SchemaContext getSchemaContext() {
+        return schemaContext;
+    }
 }