Fix checkstyle violations in sal-common-impl
[controller.git] / opendaylight / md-sal / sal-common-impl / src / main / java / org / opendaylight / controller / md / sal / common / impl / util / compat / DataSchemaContainerProxy.java
index fc3db54ae063503110bebaedab6b99a7def7be2d..132cc6e660f6795b86241ca0a5ff9aa245b1b257 100644 (file)
@@ -24,10 +24,10 @@ class DataSchemaContainerProxy implements DataNodeContainer {
     private final Set<DataSchemaNode> realChildSchemas;
     private final Map<QName, DataSchemaNode> mappedChildSchemas;
 
-    public DataSchemaContainerProxy(final Set<DataSchemaNode> realChildSchema) {
+    DataSchemaContainerProxy(final Set<DataSchemaNode> realChildSchema) {
         realChildSchemas = realChildSchema;
         mappedChildSchemas = new HashMap<>();
-        for(DataSchemaNode schema : realChildSchemas) {
+        for (DataSchemaNode schema : realChildSchemas) {
             mappedChildSchemas.put(schema.getQName(), schema);
         }
     }