You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by ra...@apache.org on 2006/06/16 20:58:12 UTC

svn commit: r414885 - /xml/security/trunk/src/org/apache/xml/security/c14n/implementations/NameSpaceSymbTable.java

Author: raul
Date: Fri Jun 16 11:58:11 2006
New Revision: 414885

URL: http://svn.apache.org/viewvc?rev=414885&view=rev
Log:
Not create the SymbMap just clone

Modified:
    xml/security/trunk/src/org/apache/xml/security/c14n/implementations/NameSpaceSymbTable.java

Modified: xml/security/trunk/src/org/apache/xml/security/c14n/implementations/NameSpaceSymbTable.java
URL: http://svn.apache.org/viewvc/xml/security/trunk/src/org/apache/xml/security/c14n/implementations/NameSpaceSymbTable.java?rev=414885&r1=414884&r2=414885&view=diff
==============================================================================
--- xml/security/trunk/src/org/apache/xml/security/c14n/implementations/NameSpaceSymbTable.java (original)
+++ xml/security/trunk/src/org/apache/xml/security/c14n/implementations/NameSpaceSymbTable.java Fri Jun 16 11:58:11 2006
@@ -52,8 +52,7 @@
     /**
      * Default constractor
      **/		
-    public NameSpaceSymbTable() {
-    	symb = new SymbMap();
+    public NameSpaceSymbTable() {    	
     	level = new ArrayList(10);
     	//Insert the default binding for xmlns.    	
     	symb=(SymbMap) initialMap.clone();