You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by er...@locus.apache.org on 2000/07/19 21:09:27 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/validators/common DFAContentModel.java

ericye      00/07/19 12:09:26

  Modified:    java/src/org/apache/xerces/validators/common
                        DFAContentModel.java
  Log:
  forgot to remove debugg printout, --ericye
  
  Revision  Changes    Path
  1.11      +2 -2      xml-xerces/java/src/org/apache/xerces/validators/common/DFAContentModel.java
  
  Index: DFAContentModel.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/common/DFAContentModel.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DFAContentModel.java	2000/07/14 03:53:43	1.10
  +++ DFAContentModel.java	2000/07/19 19:09:23	1.11
  @@ -75,7 +75,7 @@
    * are very constrained in form and easily handled via a special case. 
    * This also makes implementation of this class much easier.
    *
  - * @version $Id: DFAContentModel.java,v 1.10 2000/07/14 03:53:43 ericye Exp $
  + * @version $Id: DFAContentModel.java,v 1.11 2000/07/19 19:09:23 ericye Exp $
    */
   public class DFAContentModel 
       implements XMLContentModel {
  @@ -494,7 +494,7 @@
   
               // If we didn't find it, then obviously not valid
               if (elemIndex == fElemMapSize) {
  -                if (!DEBUG_VALIDATE_CONTENT) {
  +                if (DEBUG_VALIDATE_CONTENT) {
                       System.out.println("!!! didn't find it");
   
                       System.out.println("curElem : " +curElem );