mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1234 - Remove deprecated CacheMode.QUERY_ONLY (migrate to CacheMode.GET)
This commit is contained in:
@@ -67,13 +67,7 @@ public enum CacheMode {
|
||||
* <p>
|
||||
* This mode does not put entries into the cache or invalidate parts of the cache.
|
||||
*/
|
||||
GET(true, false),
|
||||
|
||||
/**
|
||||
* Deprecated - migrate to GET.
|
||||
*/
|
||||
@Deprecated
|
||||
QUERY_ONLY(true, false);
|
||||
GET(true, false);
|
||||
|
||||
private boolean get;
|
||||
private boolean put;
|
||||
|
||||
Reference in New Issue
Block a user