#1234 - Remove deprecated CacheMode.QUERY_ONLY (migrate to CacheMode.GET)

This commit is contained in:
Rob Bygrave
2018-01-09 19:56:55 +13:00
parent 8cff85fdda
commit 0d4c50e19c
+1 -7
View File
@@ -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;