Skip to content

Commit 78e9b11

Browse files
authored
Update XmlFileBuilder.java
1 parent c7e6de4 commit 78e9b11

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 = getChildRecursive(child, name, key, value)
217+
res = getChildRecursive(child, name, key, value);
218218
}
219219
return (Element)res;
220220
}

0 commit comments

Comments
 (0)