Enforce checkstyle in yang-data-util
[yangtools.git] / yang / yang-data-util / src / main / java / org / opendaylight / yangtools / yang / data / util / LeafListEntryContextNode.java
index 540c8720bb9dabcdedbdc22511719d89fdcbf9ea..7b89afc34001f71186bda42155a5d19ac36f2d36 100644 (file)
@@ -11,8 +11,7 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithV
 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
 
 final class LeafListEntryContextNode extends AbstractLeafNodeContext<NodeWithValue<?>> {
-
-    public LeafListEntryContextNode(final LeafListSchemaNode potential) {
+    LeafListEntryContextNode(final LeafListSchemaNode potential) {
         super(new NodeWithValue<>(potential.getQName(), null), potential);
     }
 
@@ -20,4 +19,4 @@ final class LeafListEntryContextNode extends AbstractLeafNodeContext<NodeWithVal
     public boolean isKeyedEntry() {
         return true;
     }
-}
\ No newline at end of file
+}