You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

dom4j-README.txt 618 B

12345678910111213141516171819
  1. This is the standard dom4j 1.2 release with a patch applied to jaxen. The
  2. patch fixes a problem where DocumentHelper.createPattern("aaa | bbb") would
  3. fail never matching the element <bbb> because the pattern for "bbb" had been
  4. overwritten by the pattern for "aaa".
  5. --- org/jaxen/pattern/UnionPattern.java.orig Wed Aug 8 17:29:49 2001
  6. +++ org/jaxen/pattern/UnionPattern.java Wed Mar 6 01:39:51 2002
  7. @@ -91,7 +91,7 @@
  8. public Pattern simplify()
  9. {
  10. this.lhs = lhs.simplify();
  11. - this.rhs = lhs.simplify();
  12. + this.rhs = rhs.simplify();
  13. init();
  14. return this;
  15. }