From 99db9e2a1a78690f5915de8a5425054e89089ed2 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 13 Sep 2016 22:38:49 +0100 Subject: [PATCH] Node: remove undeclared runtime exceptions from javadoc --- src/main/java/net/kemitix/node/Node.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/net/kemitix/node/Node.java b/src/main/java/net/kemitix/node/Node.java index b00bf67..029d536 100644 --- a/src/main/java/net/kemitix/node/Node.java +++ b/src/main/java/net/kemitix/node/Node.java @@ -157,8 +157,6 @@ public interface Node { * @param child the child's data to search for * * @return the child node if found - * - * @throws NodeException if the node is not found */ Node getChild(T child); @@ -205,8 +203,6 @@ public interface Node { * @param name the name of the child * * @return the node - * - * @throws NodeException if the node is not found */ Node getChildByName(String name);