You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by co...@apache.org on 2013/03/15 10:51:00 UTC

svn commit: r1456849 - in /santuario/xml-security-java/branches/1.5.x-fixes: CHANGELOG.txt src/main/java/org/apache/xml/security/signature/Reference.java

Author: coheigea
Date: Fri Mar 15 09:51:00 2013
New Revision: 1456849

URL: http://svn.apache.org/r1456849
Log:
Preparing for 1.5.4 release

Modified:
    santuario/xml-security-java/branches/1.5.x-fixes/CHANGELOG.txt
    santuario/xml-security-java/branches/1.5.x-fixes/src/main/java/org/apache/xml/security/signature/Reference.java

Modified: santuario/xml-security-java/branches/1.5.x-fixes/CHANGELOG.txt
URL: http://svn.apache.org/viewvc/santuario/xml-security-java/branches/1.5.x-fixes/CHANGELOG.txt?rev=1456849&r1=1456848&r2=1456849&view=diff
==============================================================================
--- santuario/xml-security-java/branches/1.5.x-fixes/CHANGELOG.txt (original)
+++ santuario/xml-security-java/branches/1.5.x-fixes/CHANGELOG.txt Fri Mar 15 09:51:00 2013
@@ -1,6 +1,8 @@
 Changelog for "Apache xml-security" <http://santuario.apache.org/>
 
-New in v1.5.4-SNAPSHOT:
+New in v1.5.4:
+    Fixed SANTUARIO-337 - ResourceResolver does thread-unsafe handling of the "secureValidation" flag.
+    Fixed SANTUARIO-353 - ReferenceSubTreeData.iterator() does not return nodes in document order.
     Fixed SANTUARIO-351 - Avoid possible NPE in Unsync OutputStreams.
 
 New in v1.5.3:

Modified: santuario/xml-security-java/branches/1.5.x-fixes/src/main/java/org/apache/xml/security/signature/Reference.java
URL: http://svn.apache.org/viewvc/santuario/xml-security-java/branches/1.5.x-fixes/src/main/java/org/apache/xml/security/signature/Reference.java?rev=1456849&r1=1456848&r2=1456849&view=diff
==============================================================================
--- santuario/xml-security-java/branches/1.5.x-fixes/src/main/java/org/apache/xml/security/signature/Reference.java (original)
+++ santuario/xml-security-java/branches/1.5.x-fixes/src/main/java/org/apache/xml/security/signature/Reference.java Fri Mar 15 09:51:00 2013
@@ -618,17 +618,14 @@ public class Reference extends Signature
                             
                             Iterator<Node> sIterator = s.iterator();
                             
-                            @Override
                             public boolean hasNext() {
                                 return sIterator.hasNext();
                             }
 
-                            @Override
                             public Node next() {
                                 return sIterator.next();
                             }
 
-                            @Override
                             public void remove() {
                                 throw new UnsupportedOperationException();
                             }