Some code hygeine from Charlie.

This commit is contained in:
Michael Bayne
2009-08-17 21:06:57 +00:00
parent 4a48875b7f
commit c6ae109f19
3 changed files with 5 additions and 2 deletions
@@ -368,6 +368,9 @@ public abstract class DepotRepository
throw new IllegalArgumentException( throw new IllegalArgumentException(
"Cannot use " + cache + " strategy because " + reason); "Cannot use " + cache + " strategy because " + reason);
} }
break;
case NONE: case CONTENTS:
break;// NONE and CONTENTS can always be used.
} }
if (!_ctx.isUsingCache()) { if (!_ctx.isUsingCache()) {
@@ -353,7 +353,7 @@ public class EHCacheAdapter
} }
protected CacheEventListener _cacheEventListener = new CacheEventListener() { protected CacheEventListener _cacheEventListener = new CacheEventListener() {
public Object clone () throws CloneNotSupportedException { @Override public Object clone () throws CloneNotSupportedException {
throw new CloneNotSupportedException(); throw new CloneNotSupportedException();
} }
public void dispose () {} public void dispose () {}
+1 -1
View File
@@ -51,7 +51,7 @@ import com.samskivert.depot.operator.Or;
* the cache. * the cache.
*/ */
public abstract class KeySet<T extends PersistentRecord> extends WhereClause public abstract class KeySet<T extends PersistentRecord> extends WhereClause
implements Serializable, SQLExpression, ValidatingCacheInvalidator, Iterable<Key<T>> implements Serializable, ValidatingCacheInvalidator, Iterable<Key<T>>
{ {
/** /**
* Creates a key set for the supplied persistent record and keys. * Creates a key set for the supplied persistent record and keys.