#2626 - Add final modifier to methods - For readOnly disableLazyLoad using Collections.EMPTY_LIST etc

This commit is contained in:
Rob Bygrave
2022-05-03 12:23:22 +12:00
parent 84042397b6
commit 1d4f2ad856
6 changed files with 30 additions and 47 deletions
@@ -29,9 +29,10 @@ public final class TenantAwareCache implements ServerCache {
/**
* Return the underlying ServerCache that is being delegated to.
*/
@SuppressWarnings("unchecked")
@Override
public <T> T unwrap(Class<T> cls) {
return (T)delegate;
return (T) delegate;
}
@Override