You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "joel truher (JIRA)" <ji...@apache.org> on 2008/11/15 01:32:44 UTC

[jira] Commented: (SCXML-89) Assign.execute() doesn't remove all children of oldNode (includes fix)

    [ https://issues.apache.org/jira/browse/SCXML-89?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12647767#action_12647767 ] 

joel truher commented on SCXML-89:
----------------------------------

verified on the trunk (svn 714196, last change 714191 Fri Nov 14 15:43:16 PST).  also ran a somewhat more extensive test within my app which independently verifies.

thanks for the tips on diffs; i wasn't thinking about it.

> Assign.execute() doesn't remove all children of oldNode (includes fix)
> ----------------------------------------------------------------------
>
>                 Key: SCXML-89
>                 URL: https://issues.apache.org/jira/browse/SCXML-89
>             Project: Commons SCXML
>          Issue Type: Bug
>    Affects Versions: 0.8
>         Environment: Ubuntu 7.10 (64 bit), JRE ia32-java6-sun-1.6.0.03
>            Reporter: joel truher
>             Fix For: 0.9
>
>         Attachments: jira-89.diff
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> This code, from Assign.execute(), seems to remove the oldNode child and *then* ask for its next sibling, which returns null.  The result is to remove the first child, but leave the other children around, so that the result of "Assign" is a concatenation of all-but-one of the old nodes, followed by the new nodes.
> {noformat}
> for (Node child = oldNode.getFirstChild();
>    child != null;
>    child = child.getNextSibling()) {
>    oldNode.removeChild(child);
> }
> {noformat}
> This (modified) code finds the next sibling before removal and produces the expected result.
> {noformat}
> for (Node child = oldNode.getFirstChild(); child != null;) {
>    Node nextChild = child.getNextSibling();
>    oldNode.removeChild(child);
>    child = nextChild;
> }
> {noformat}
> I can supply a test case if that would be helpful.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.