Add missing @Nullable in SettableListenableFuture
Closes gh-29150
This commit is contained in:
committed by
Sam Brannen
parent
c871758a51
commit
35d379f9d3
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user