From bf87c81ccf65f05715b6ca934941aefed583b12f Mon Sep 17 00:00:00 2001 From: REAS Date: Thu, 25 Jul 2019 14:08:47 -0700 Subject: [PATCH] Reference update for XML getChild() --- core/src/processing/data/XML.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/src/processing/data/XML.java b/core/src/processing/data/XML.java index 49880c888..7089e65db 100644 --- a/core/src/processing/data/XML.java +++ b/core/src/processing/data/XML.java @@ -440,8 +440,7 @@ public class XML implements Serializable { /** * Quick accessor for an element at a particular index. * - * @webref xml:method - * @brief Returns the child element with the specified index value or path + * @nowebref */ public XML getChild(int index) { checkChildren(); @@ -452,6 +451,8 @@ public class XML implements Serializable { /** * Get a child by its name or path. * + * @webref xml:method + * @brief Returns the child element with the specified index value or path * @param name element name or path/to/element * @return the first matching element or null if no match */