提交 2355c34d 编写于 作者: F Fritz Elfert

Return boolean as suggested.

上级 006de46f
......@@ -1737,9 +1737,10 @@ public class Jenkins extends AbstractCIBase implements DirectlyModifiableTopLeve
/**
* Updates an existing {@link Node} on disk.
* @see Nodes#updateNode
*/
public void updateNode(Node n) throws IOException {
nodes.updateNode(n);
public boolean updateNode(Node n) throws IOException {
return nodes.updateNode(n);
}
public void setNodes(final List<? extends Node> n) throws IOException {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册