juergen     01/02/19 08:44:49

  Modified:    src/share/org/apache/slide/lock LockException.java
  Log:
  removed the multiple warning "already locked" by default in case of locking a 
resource
  
  Revision  Changes    Path
  1.4       +1 -1      jakarta-slide/src/share/org/apache/slide/lock/LockException.java
  
  Index: LockException.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/share/org/apache/slide/lock/LockException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- LockException.java        2001/02/19 16:42:45     1.3
  +++ LockException.java        2001/02/19 16:44:48     1.4
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-slide/src/share/org/apache/slide/lock/LockException.java,v 1.3 
2001/02/19 16:42:45 juergen Exp $
  - * $Revision: 1.3 $
  - * $Date: 2001/02/19 16:42:45 $
  + * $Header: 
/home/cvs/jakarta-slide/src/share/org/apache/slide/lock/LockException.java,v 1.4 
2001/02/19 16:44:48 juergen Exp $
  + * $Revision: 1.4 $
  + * $Date: 2001/02/19 16:44:48 $
    *
    * ====================================================================
    *
  @@ -69,7 +69,7 @@
    * Lock exception.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Remy Maucherat</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public class LockException extends SlideException {
       
  @@ -83,7 +83,7 @@
        * @param message Exception message
        */
       public LockException(String message) {
  -        super(message);
  +        super(message, false);
       }
          
   }
  
  
  

Reply via email to