tmiller 01/08/17 08:10:36
Modified: java/src/org/apache/xalan/xsltc/compiler xpath.cup
Log:
re-activated the no dups filtering, dont know how
this got reverted back to no filtering, but it is fixed again.
Revision Changes Path
1.11 +3 -3 xml-xalan/java/src/org/apache/xalan/xsltc/compiler/xpath.cup
Index: xpath.cup
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/compiler/xpath.cup,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xpath.cup 2001/08/17 13:17:44 1.10
+++ xpath.cup 2001/08/17 15:10:24 1.11
@@ -1,5 +1,5 @@
/*
- * @(#)$Id: xpath.cup,v 1.10 2001/08/17 13:17:44 morten Exp $
+ * @(#)$Id: xpath.cup,v 1.11 2001/08/17 15:10:24 tmiller Exp $
*
* Copyright 2000 Sun Microsystems, Inc. All Rights Reserved.
*
@@ -494,12 +494,12 @@
// CASE I: no filtering, nodes OK but have dups,
// results of test suite in file: 'REP_UNFILT'
- RESULT = path;
+ //RESULT = path;
// CASE II: Filtered Abs Loc Path -
// all tests fail except desOrSelf test,
// results of test suite in file: 'REP-FILT'
- //RESULT = new FilteredAbsoluteLocationPath(path);
+ RESULT = new FilteredAbsoluteLocationPath(path);
// CASE III: Filtered Parent Loc Path -
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]