Rename Any{Data,Xml}SchemaNode to Any{data,xml}SchemaNode
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / HelperMethods.java
index 054f5cd6e42e7bf521bf1793d8c2681ca803b57d..3323cc9c5916fbd5d46af948feef6e6a891c1bdc 100644 (file)
@@ -28,6 +28,6 @@ final class HelperMethods {
     private static boolean isDataNode(final DataSchemaNode node) {
         return node instanceof ContainerSchemaNode || node instanceof LeafSchemaNode
                 || node instanceof LeafListSchemaNode || node instanceof ListSchemaNode
-                || node instanceof AnyDataSchemaNode || node instanceof AnyXmlSchemaNode;
+                || node instanceof AnydataSchemaNode || node instanceof AnyxmlSchemaNode;
     }
 }