Javadoc fix, unused import nix.

This commit is contained in:
Michael Bayne
2009-02-03 01:46:29 +00:00
parent db3dd861f4
commit ce03952b3c
2 changed files with 4 additions and 5 deletions
@@ -37,10 +37,10 @@ import net.sf.ehcache.event.CacheEventListener;
import static com.samskivert.depot.Log.log;
/**
* An implementation of {@link CacheAdapter} for ehcache where each {@link CacheCategory} results
* in one {@link Ehcache}. All (cacheId, key) combinations within one category is stuffed into the
* same {@link Ehcache}, and all elements are cached under {@link EHCacheKey}, which basically
* wraps just such a tuple.
* An implementation of {@link CacheAdapter} for ehcache where each
* {@link CacheAdapter.CacheCategory} results in one {@link Ehcache}. All (cacheId, key)
* combinations within one category is stuffed into the same {@link Ehcache}, and all elements are
* cached under {@link EHCacheKey}, which basically wraps just such a tuple.
*
* Thus there are currently only three Ehcaches in play, called 'depotRecord', 'depotKeyset', and
* 'depotResult'. These must be defined in your ehcache.xml configuration. If you use distributed
@@ -34,7 +34,6 @@ import com.google.common.collect.Sets;
import com.samskivert.io.PersistenceException;
import com.samskivert.util.StringUtil;
import com.samskivert.util.Tuple;
import com.samskivert.jdbc.ConnectionProvider;
import com.samskivert.jdbc.DatabaseLiaison;