From 01419a5fa44868d489a1fe462e7f134c79caccd9 Mon Sep 17 00:00:00 2001 From: "rem..om" Date: Thu, 21 Nov 2013 21:36:22 +0000 Subject: [PATCH] fixed Node.attachChild javadoc git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10900 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/core/com/jme3/scene/Node.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/core/com/jme3/scene/Node.java b/engine/src/core/com/jme3/scene/Node.java index 37477733c..b5bd45b10 100644 --- a/engine/src/core/com/jme3/scene/Node.java +++ b/engine/src/core/com/jme3/scene/Node.java @@ -229,7 +229,7 @@ public class Node extends Spatial implements Savable { * @param child * the child to attach to this node. * @return the number of children maintained by this node. - * @throws NullPointerException If child is null. + * @throws IllegalArgumentException if child is null. */ public int attachChild(Spatial child) { if (child == null)