Add missing @Nullable in SettableListenableFuture
Closes gh-29150
This commit is contained in:
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.
|
* {@link java.util.concurrent.CancellationException} if the future has been cancelled.
|
||||||
* @return the value associated with this future
|
* @return the value associated with this future
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override @Nullable
|
||||||
public T get() throws InterruptedException, ExecutionException {
|
public T get() throws InterruptedException, ExecutionException {
|
||||||
return this.settableTask.get();
|
return this.settableTask.get();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue