OPENJPA-1727: Update QueryCacheStoreQuery.checkCache.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@981549 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2010-08-02 15:14:23 +00:00
parent 1b07ef0bc7
commit bb7c9b2fd8
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ public class QueryCacheStoreQuery
for (Long ts: timestamps) {
// if this is true we have to evict the query
// from cache
if (queryTS < ts) {
if (queryTS <= ts) {
qcache.remove(qk);
return null;
}