Node: fix broken javadoc
This commit is contained in:
parent
f4d1d6e689
commit
57c08153d3
1 changed files with 2 additions and 2 deletions
|
@ -114,8 +114,8 @@ public interface Node<T> {
|
||||||
*
|
*
|
||||||
* @return the found or created child node
|
* @return the found or created child node
|
||||||
*
|
*
|
||||||
* @deprecated use node.findChild(child).orElseGet(() ->
|
* @deprecated use {@code node.findChild(child).orElseGet(() ->
|
||||||
* node.createChild(child));
|
* node.createChild(child))};
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
Node<T> findOrCreateChild(T child);
|
Node<T> findOrCreateChild(T child);
|
||||||
|
|
Loading…
Reference in a new issue