juergen 01/04/03 02:03:34
Modified: src/share/org/apache/slide/store AbstractStore.java
Log:
removed a duplicate
Revision Changes Path
1.12 +4 -19
jakarta-slide/src/share/org/apache/slide/store/AbstractStore.java
Index: AbstractStore.java
===================================================================
RCS file:
/home/cvs/jakarta-slide/src/share/org/apache/slide/store/AbstractStore.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- AbstractStore.java 2001/03/30 11:18:06 1.11
+++ AbstractStore.java 2001/04/03 09:03:33 1.12
@@ -1,7 +1,7 @@
/*
- * $Header:
/home/cvs/jakarta-slide/src/share/org/apache/slide/store/AbstractStore.java,v 1.11
2001/03/30 11:18:06 juergen Exp $
- * $Revision: 1.11 $
- * $Date: 2001/03/30 11:18:06 $
+ * $Header:
/home/cvs/jakarta-slide/src/share/org/apache/slide/store/AbstractStore.java,v 1.12
2001/04/03 09:03:33 juergen Exp $
+ * $Revision: 1.12 $
+ * $Date: 2001/04/03 09:03:33 $
*
* ====================================================================
*
@@ -88,7 +88,7 @@
* Abstract implementation of a store. Handles all caching operations.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Remy Maucherat</a>
- * @version $Revision: 1.11 $
+ * @version $Revision: 1.12 $
*/
public abstract class AbstractStore extends AbstractSimpleService
implements Store {
@@ -156,21 +156,6 @@
- // the scope of this store as specified in domain.xml
- protected Scope scope;
-
- /**
- * Set the scope of the store as specified in domain.xml.
- */
- public void setScope(Scope scope) {
- this.scope = scope;
- for (int i = 0; i < resourceManagers.length; i++) {
- resourceManagers[i].setScope(scope);
- }
- }
-
-
-
// the name of this store as specified in domain.xml
private String name;