Merged hotfix/0.4.1 into master

This commit is contained in:
Paul Campbell 2016-09-13 07:52:28 +01:00
commit ce55d437ba

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