Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ public Object load(Object key) {
return one;
}

@SuppressWarnings("CacheLoaderNull") // test of broken user implementation
@Override
public ListenableFuture<Object> reload(Object key, Object oldValue) {
return null;
Expand Down Expand Up @@ -823,6 +824,7 @@ public Object load(Object key) {
throw new AssertionError();
}

@SuppressWarnings("CacheLoaderNull") // test of broken user implementation
@Override
public Map<Object, Object> loadAll(Iterable<?> keys) {
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ public Object load(Object key) {
return one;
}

@SuppressWarnings("CacheLoaderNull") // test of broken user implementation
@Override
public ListenableFuture<Object> reload(Object key, Object oldValue) {
return null;
Expand Down Expand Up @@ -823,6 +824,7 @@ public Object load(Object key) {
throw new AssertionError();
}

@SuppressWarnings("CacheLoaderNull") // test of broken user implementation
@Override
public Map<Object, Object> loadAll(Iterable<?> keys) {
return null;
Expand Down
Loading