remm        01/10/16 22:16:03

  Modified:    src/webdav/server/org/apache/slide/webdav/method
                        WebdavMethod.java
  Log:
  - The need transaction flag should default to false (since all the methods which
    need it set to true are ovverriding the method to return true).
  
  Revision  Changes    Path
  1.38      +4 -4      
jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java
  
  Index: WebdavMethod.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- WebdavMethod.java 2001/10/11 05:52:15     1.37
  +++ WebdavMethod.java 2001/10/17 05:16:03     1.38
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java,v
 1.37 2001/10/11 05:52:15 remm Exp $
  - * $Revision: 1.37 $
  - * $Date: 2001/10/11 05:52:15 $
  + * $Header: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java,v
 1.38 2001/10/17 05:16:03 remm Exp $
  + * $Revision: 1.38 $
  + * $Date: 2001/10/17 05:16:03 $
    *
    * ====================================================================
    *
  @@ -344,7 +344,7 @@
        * methods get, propfind would not need transaction support.
        */
       protected boolean methodNeedsTransactionSupport() {
  -        return true;
  +        return false;
           // this method should return false and e.g. PutMethod should
           // overwrite it to true, but PropFind creates a RevisionDescriptors
           // on the fly
  
  
  


Reply via email to