Fix checkstyle issues in module sal-dom-broker
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / sal / dom / broker / impl / SchemaContextProviders.java
index e312e3da805aef21932143db3c7a04cb7e944b60..7fc33d15c586577508007877047fd909e2173ba6 100644 (file)
@@ -12,13 +12,13 @@ import org.opendaylight.yangtools.concepts.Delegator;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 import org.opendaylight.yangtools.yang.model.api.SchemaContextProvider;
 
-public class SchemaContextProviders {
+public final class SchemaContextProviders {
 
     private SchemaContextProviders() {
         throw new UnsupportedOperationException("Utility class.");
     }
 
-    public static final SchemaContextProvider fromSchemaService(final SchemaService schemaService) {
+    public static SchemaContextProvider fromSchemaService(final SchemaService schemaService) {
         if (schemaService instanceof SchemaContextProvider) {
             return (SchemaContextProvider) schemaService;
         }
@@ -29,7 +29,7 @@ public class SchemaContextProviders {
 
         private final SchemaService service;
 
-        public SchemaServiceAdapter(final SchemaService service) {
+        SchemaServiceAdapter(final SchemaService service) {
             this.service = service;
         }