summaryrefslogtreecommitdiffstats
path: root/org/madore
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2020-12-01 19:40:42 +0100
committerDavid A. Madore <david+git@madore.org>2020-12-01 19:40:42 +0100
commitae3384fd037379fb5083ed1de3e1f45875260b96 (patch)
tree06bbf0097a509b0bba98d4a7e5c1e84f956debe0 /org/madore
parent9159426ee11be9d363955b15e4d91f13e2595431 (diff)
downloaddamlengine-ae3384fd037379fb5083ed1de3e1f45875260b96.tar.gz
damlengine-ae3384fd037379fb5083ed1de3e1f45875260b96.tar.bz2
damlengine-ae3384fd037379fb5083ed1de3e1f45875260b96.zip
Fix bug in previous commit.
Diffstat (limited to 'org/madore')
-rw-r--r--org/madore/damlengine/TodoEmailDespammedElement.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org/madore/damlengine/TodoEmailDespammedElement.java b/org/madore/damlengine/TodoEmailDespammedElement.java
index fdeb0d5..13dce54 100644
--- a/org/madore/damlengine/TodoEmailDespammedElement.java
+++ b/org/madore/damlengine/TodoEmailDespammedElement.java
@@ -45,7 +45,7 @@ public final class TodoEmailDespammedElement extends TodoDefaultElement {
ArrayList<TodoElement> toProcess
= new ArrayList<TodoElement>(childList.size()+8);
for ( Node child : childList ) {
- out.appendChild(child);
+ out0.appendChild(child);
if ( child.getNodeType() == Node.ELEMENT_NODE ) {
TodoElement it
= TodoElement.getTodoElement((Element)child, this.ctx, this);