Skip to content
This repository has been archived by the owner on Jul 2, 2020. It is now read-only.

Commit

Permalink
Fixed wrong null annotation (eclipse-archived#6521)
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
  • Loading branch information
cweitkamp authored and htreu committed Nov 15, 2018
1 parent 75305c1 commit b84c307
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private String encodeParam(String value) {
}
}

private String getResponseFromCache(String url) {
private @Nullable String getResponseFromCache(String url) {
return cache.putIfAbsentAndGet(url, () -> getResponse(url));
}

Expand Down

0 comments on commit b84c307

Please sign in to comment.