Merged hotfix/0.4.1 into develop
This commit is contained in:
commit
7030cbc4de
2 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,8 @@
|
|||
[![Coverage Status](https://coveralls.io/repos/github/kemitix/node/badge.svg?branch=develop)](https://coveralls.io/github/kemitix/node?branch=develop)
|
||||
|
||||
# node
|
||||
|
||||
[![Join the chat at https://gitter.im/kemitix/node](https://badges.gitter.im/kemitix/node.svg)](https://gitter.im/kemitix/node?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
A parent/children data structure
|
||||
|
||||
# Usage
|
||||
|
|
|
@ -114,8 +114,8 @@ public interface Node<T> {
|
|||
*
|
||||
* @return the found or created child node
|
||||
*
|
||||
* @deprecated use node.findChild(child).orElseGet(() ->
|
||||
* node.createChild(child));
|
||||
* @deprecated use {@code node.findChild(child).orElseGet(() ->
|
||||
* node.createChild(child))};
|
||||
*/
|
||||
@Deprecated
|
||||
Node<T> findOrCreateChild(T child);
|
||||
|
|
Loading…
Reference in a new issue