Skip to content

Commit c7e6de4

Browse files
authored
fix function call
1 parent 54ab575 commit c7e6de4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/inet/gradle/setup/util/XmlFileBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public Element getChildRecursive( Node parent, String name, String key, String v
214214

215215
Element res = null;
216216
for( Node child = first; child != null && res == null; child = child.getNextSibling() ) {
217-
res = getChildExhaustive(child, name, key, value)
217+
res = getChildRecursive(child, name, key, value)
218218
}
219219
return (Element)res;
220220
}

0 commit comments

Comments
 (0)