You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by mu...@apache.org on 2007/09/07 16:29:40 UTC

svn commit: r573595 - /xml/security/branches/stax_jsr105/src/com/r_bg/stax/C14nWorker.java

Author: mullan
Date: Fri Sep  7 07:29:39 2007
New Revision: 573595

URL: http://svn.apache.org/viewvc?rev=573595&view=rev
Log:
Add WithComments boolean flag parameter.

Modified:
    xml/security/branches/stax_jsr105/src/com/r_bg/stax/C14nWorker.java

Modified: xml/security/branches/stax_jsr105/src/com/r_bg/stax/C14nWorker.java
URL: http://svn.apache.org/viewvc/xml/security/branches/stax_jsr105/src/com/r_bg/stax/C14nWorker.java?rev=573595&r1=573594&r2=573595&view=diff
==============================================================================
--- xml/security/branches/stax_jsr105/src/com/r_bg/stax/C14nWorker.java (original)
+++ xml/security/branches/stax_jsr105/src/com/r_bg/stax/C14nWorker.java Fri Sep  7 07:29:39 2007
@@ -9,8 +9,8 @@
 public class C14nWorker implements StaxWorker {
 	DigestResultListener re;
 	C14n c14n;
-	public C14nWorker(DigestResultListener re,OutputStream os) {
-		c14n=new C14n(new com.r_bg.stax.c14n.AttributeHandleExclusive(),os);
+	public C14nWorker(DigestResultListener re, OutputStream os, boolean withComments) {
+		c14n=new C14n(new com.r_bg.stax.c14n.AttributeHandleExclusive(),os, withComments);
 		this.re=re;
 	}