Node: remove undeclared runtime exceptions from javadoc

This commit is contained in:
Paul Campbell 2016-09-13 22:38:49 +01:00
parent d32221c649
commit 99db9e2a1a

View file

@ -157,8 +157,6 @@ public interface Node<T> {
* @param child the child's data to search for
*
* @return the child node if found
*
* @throws NodeException if the node is not found
*/
Node<T> getChild(T child);
@ -205,8 +203,6 @@ public interface Node<T> {
* @param name the name of the child
*
* @return the node
*
* @throws NodeException if the node is not found
*/
Node<T> getChildByName(String name);