# HG changeset patch # User Andreas Woess # Date 1399043649 -7200 # Node ID 1a7ebcf3ae22bb040f35e0c28636843629a6b64b # Parent 4f397be8f424cec1ed7e50378f0e2b93ce73005a Truffle: fix javadoc diff -r 4f397be8f424 -r 1a7ebcf3ae22 graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildNodeTest.java --- a/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildNodeTest.java Fri May 02 17:07:44 2014 +0200 +++ b/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildNodeTest.java Fri May 02 17:14:09 2014 +0200 @@ -36,10 +36,8 @@ * *

* Child nodes are stored in the class of the parent node in fields that are marked with the - * {@link Child} annotation. Before such a field is assigned, {@link Node#adoptChild} must be - * called. This method automatically establishes a link from the child to the parent. The - * {@link Node#getParent()} method allows access to this field. Every node also provides the ability - * to iterate over its children using {@link Node#getChildren()}. + * {@link Child} annotation. The {@link Node#getParent()} method allows access to this field. Every + * node also provides the ability to iterate over its children using {@link Node#getChildren()}. *

* *