Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 7.4
-
Fix Version/s: 8.1-milestone-1
-
Component/s: {Unused} Cache
-
Labels:None
-
Difficulty:Unknown
-
Documentation:N/A
-
Documentation in Release Notes:N/A
-
Similar issues:
Description
public class CacheEntryListenerAdapter<T> implements CacheEntryListener<T> { @Override public void cacheEntryAdded(CacheEntryEvent<T> event) { // Do nothing by default } @Override public void cacheEntryRemoved(CacheEntryEvent<T> event) { // Do nothing by default } @Override public void cacheEntryModified(CacheEntryEvent<T> event) { // Do nothing by default } }