Rename OrderedNodeContainer.getChild(int)
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableUnkeyedListNodeBuilder.java
index 3d96375233e406ef016411d9009d9f7c8211728e..dfb2a49ca51c857340177a30ca920a485ed71551 100644 (file)
@@ -128,7 +128,7 @@ public class ImmutableUnkeyedListNodeBuilder implements CollectionNodeBuilder<Un
         }
 
         @Override
-        public UnkeyedListEntryNode getChild(final int position) {
+        public UnkeyedListEntryNode childAt(final int position) {
             throw new IndexOutOfBoundsException();
         }
 
@@ -167,7 +167,7 @@ public class ImmutableUnkeyedListNodeBuilder implements CollectionNodeBuilder<Un
         }
 
         @Override
-        public UnkeyedListEntryNode getChild(final int position) {
+        public UnkeyedListEntryNode childAt(final int position) {
             return children.get(position);
         }