Add missing @Nullable in SettableListenableFuture

Closes gh-29150
This commit is contained in:
Jens Dietrich 2022-09-14 13:43:21 +12:00 committed by Sam Brannen
parent c871758a51
commit 35d379f9d3
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ public class SettableListenableFuture<T> implements ListenableFuture<T> {
* {@link java.util.concurrent.CancellationException} if the future has been cancelled.
* @return the value associated with this future
*/
@Override
@Override @Nullable
public T get() throws InterruptedException, ExecutionException {
return this.settableTask.get();
}