Merged hotfix/0.4.1 into develop

This commit is contained in:
Paul Campbell 2016-09-13 07:52:35 +01:00
commit 7030cbc4de
2 changed files with 4 additions and 2 deletions

View file

@ -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) [![Coverage Status](https://coveralls.io/repos/github/kemitix/node/badge.svg?branch=develop)](https://coveralls.io/github/kemitix/node?branch=develop)
# node # 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 A parent/children data structure
# Usage # Usage

View file

@ -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);