Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37601679
en ru br
ALT Linux repos
S:9.4.0.9-alt2_10jpp11
5.0: 6.5.5-alt2_1jpp5
4.1: 6.5.3-alt2_5jpp1.7
4.0: 6.5.3-alt2_5jpp1.7

Group :: Development/Java
RPM: saxon

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: saxon-tinytree.patch
Download


--- com/icl/saxon/tinytree/TinyNodeImpl.java~	2001-06-05 23:13:52.000000000 +0300
+++ com/icl/saxon/tinytree/TinyNodeImpl.java	2004-07-19 20:56:23.212127703 +0300
@@ -60,6 +60,8 @@
     public boolean isSameNode(NodeInfo other) {
         if (this==other) return true;
         if (!(other instanceof TinyNodeImpl)) return false;
+        // http://saxon.sourceforge.net/saxon6.5.3/limitations.html
+        if (this.getNodeType() != other.getNodeType()) return false;
         return this.document==((TinyNodeImpl)other).document &&
              this.nodeNr==((TinyNodeImpl)other).nodeNr;
     }
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin