Skip to content

Commit 3e5cff9

Browse files
committed
fix: add missing nullness annotation
1 parent 5713f30 commit 3e5cff9

File tree

1 file changed

+1
-1
lines changed
  • spotify-web-api-java/src/main/java/de/sonallux/spotify/api/http

1 file changed

+1
-1
lines changed

spotify-web-api-java/src/main/java/de/sonallux/spotify/api/http/ApiCall.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public Response<T> executeCall() throws IOException {
7878
return parseResponse(call.execute());
7979
}
8080

81-
public T execute() throws SpotifyApiException {
81+
public @Nullable T execute() throws SpotifyApiException {
8282
Response<T> response;
8383
try {
8484
response = executeCall();

0 commit comments

Comments
 (0)