cmlenz 01/09/09 05:05:57
Modified: src/share/org/apache/slide/lock LockImpl.java
Log:
- enumerateLocks() without the 'inherited' parameter should pass 'true' as
parameter value when calling enumerateLocks() with the 'inherited'
parameter
Revision Changes Path
1.19 +5 -5 jakarta-slide/src/share/org/apache/slide/lock/LockImpl.java
Index: LockImpl.java
===================================================================
RCS file: /home/cvs/jakarta-slide/src/share/org/apache/slide/lock/LockImpl.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- LockImpl.java 2001/09/08 19:50:37 1.18
+++ LockImpl.java 2001/09/09 12:05:57 1.19
@@ -1,7 +1,7 @@
/*
- * $Header: /home/cvs/jakarta-slide/src/share/org/apache/slide/lock/LockImpl.java,v
1.18 2001/09/08 19:50:37 cmlenz Exp $
- * $Revision: 1.18 $
- * $Date: 2001/09/08 19:50:37 $
+ * $Header: /home/cvs/jakarta-slide/src/share/org/apache/slide/lock/LockImpl.java,v
1.19 2001/09/09 12:05:57 cmlenz Exp $
+ * $Revision: 1.19 $
+ * $Date: 2001/09/09 12:05:57 $
*
* ====================================================================
*
@@ -78,7 +78,7 @@
* Lock helper class.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Remy Maucherat</a>
- * @version $Revision: 1.18 $
+ * @version $Revision: 1.19 $
*/
public final class LockImpl implements Lock {
@@ -310,7 +310,7 @@
throws ServiceAccessException, ObjectNotFoundException,
LockTokenNotFoundException {
- return enumerateLocks(slideToken, objectUri, false);
+ return enumerateLocks(slideToken, objectUri, true);
}