Add ImmutableNode.newXYXBuilder() methods
[yangtools.git] / codec / yang-data-codec-gson / src / test / java / org / opendaylight / yangtools / yang / data / codec / gson / AbstractComplexJsonTest.java
index e9d1f2dc22b35f5eda625820a0b2afa64db8474c..16889281e9f684969b43442ad5e757b5b6a54105 100644 (file)
@@ -23,7 +23,7 @@ abstract class AbstractComplexJsonTest {
 
     private static final QName EMPTY_LEAF = QName.create(CONT_1, "empty");
 
-    static final ContainerNode CONT1_WITH_EMPTYLEAF = ImmutableNodes.builderFactory().newContainerBuilder()
+    static final ContainerNode CONT1_WITH_EMPTYLEAF = ImmutableNodes.newContainerBuilder()
             .withNodeIdentifier(CONT_1_NODEID)
             .addChild(ImmutableNodes.leafNode(EMPTY_LEAF, Empty.value()))
             .build();