Browse Source

Per Bill Burton's request

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271797 13f79535-47bb-0310-9956-ffa450edef68
master
Erik Hatcher 23 years ago
parent
commit
e90f731146
2 changed files with 19 additions and 0 deletions
  1. BIN
      proposal/xdocs/dvsl/lib/dom4j-1.2-jp.jar
  2. +19
    -0
      proposal/xdocs/dvsl/lib/dom4j-README.txt

BIN
proposal/xdocs/dvsl/lib/dom4j-1.1.1.jar → proposal/xdocs/dvsl/lib/dom4j-1.2-jp.jar View File


+ 19
- 0
proposal/xdocs/dvsl/lib/dom4j-README.txt View File

@@ -0,0 +1,19 @@
This is the standard dom4j 1.2 release with a patch applied to jaxen. The
patch fixes a problem where DocumentHelper.createPattern("aaa | bbb") would
fail never matching the element <bbb> because the pattern for "bbb" had been
overwritten by the pattern for "aaa".

--- org/jaxen/pattern/UnionPattern.java.orig Wed Aug 8 17:29:49 2001
+++ org/jaxen/pattern/UnionPattern.java Wed Mar 6 01:39:51 2002
@@ -91,7 +91,7 @@
public Pattern simplify()
{
this.lhs = lhs.simplify();
- this.rhs = lhs.simplify();
+ this.rhs = rhs.simplify();
init();
return this;
}




Loading…
Cancel
Save