mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
必要のなかった戻り値を削除
This commit is contained in:
parent
ddd2b097e6
commit
8e4018beb0
|
@ -81,10 +81,9 @@ public class XmlMetaParserImpl implements XmlMetaParser{
|
|||
return null;
|
||||
}
|
||||
// Internal Methods
|
||||
private Element appendElement(Document document, Element rootElement, String name, String textContent) {
|
||||
private void appendElement(Document document, Element rootElement, String name, String textContent) {
|
||||
Element element = document.createElement(name);
|
||||
element.setTextContent(textContent);
|
||||
rootElement.appendChild(element);
|
||||
return element;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user