Skip to content

Commit

Permalink
Fix double appendChild
Browse files Browse the repository at this point in the history
  • Loading branch information
andresrosenthal committed Jun 12, 2018
1 parent 371c62c commit 51cd333
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/openeid/cdoc4j/xml/XmlEnc11Composer.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,7 @@ private Node createRecipientCipherData(SecretKey key, KeyPair ephemeralKeyPair,
LOGGER.error(message, e);
throw new CDOCException(message, e);
}

cipherData.appendChild(cipherValue);

cipherData.appendChild(cipherValue);

return cipherData;
Expand Down

0 comments on commit 51cd333

Please sign in to comment.