diff options
| author | Chris Burdess <dog@bluezoo.org> | 2006-09-16 17:28:12 +0000 |
|---|---|---|
| committer | Chris Burdess <dog@bluezoo.org> | 2006-09-16 17:28:12 +0000 |
| commit | 4d1f1674c34ed2e06725c4e5e0941db3bc59d19d (patch) | |
| tree | 8ca916f58c83830ee55b465b4eb77ff05f8e0437 /gnu/xml/dom | |
| parent | d15cd98f1245fbe844e72a75db35792bfb8ebc06 (diff) | |
| download | classpath-4d1f1674c34ed2e06725c4e5e0941db3bc59d19d.tar.gz | |
2006-09-16 Chris Burdess <dog@gnu.org>
Fixes PR 27293.
* gnu/xml/dom/DomNode.java: Increment length of node during insert.
Diffstat (limited to 'gnu/xml/dom')
| -rw-r--r-- | gnu/xml/dom/DomNode.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/xml/dom/DomNode.java b/gnu/xml/dom/DomNode.java index f0915eb5e..269038aa7 100644 --- a/gnu/xml/dom/DomNode.java +++ b/gnu/xml/dom/DomNode.java @@ -668,6 +668,7 @@ public abstract class DomNode { insertionEvent(null, child); } + length++; } return child; |
