sboag       01/06/26 20:52:45

  Modified:    java/src/org/apache/xml/dtm/ref DTMManagerDefault.java
  Log:
  Use && instead of || for ((null == reader) && incremental)...
  (regression from previous version).
  
  Revision  Changes    Path
  1.12      +1 -1      
xml-xalan/java/src/org/apache/xml/dtm/ref/DTMManagerDefault.java
  
  Index: DTMManagerDefault.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMManagerDefault.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- DTMManagerDefault.java    2001/06/27 01:07:50     1.11
  +++ DTMManagerDefault.java    2001/06/27 03:52:45     1.12
  @@ -252,7 +252,7 @@
   
           // If the reader is null, but they still requested an incremental 
build, 
           // then we still want to set up the CoRoutine stuff.
  -        if (this.m_incremental && incremental || ((null == reader) || 
incremental))
  +        if (this.m_incremental && incremental || ((null == reader) && 
incremental))
           {
   
             // Create a CoroutineManager to manage the coordination between 
the 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to