Skip to content

Commit

Permalink
Remove @CanIgnoreReturnValue from ForwardingListenableFuture.
Browse files Browse the repository at this point in the history
RELNOTES=n/a
PiperOrigin-RevId: 432413771
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Mar 4, 2022
1 parent b0673d8 commit 4ddae0d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Preconditions;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import java.util.concurrent.Executor;
import org.checkerframework.checker.nullness.qual.Nullable;

Expand All @@ -30,7 +29,6 @@
* @author Shardul Deo
* @since 4.0
*/
@CanIgnoreReturnValue // TODO(cpovirk): Consider being more strict.
@GwtCompatible
@ElementTypesAreNonnullByDefault
public abstract class ForwardingListenableFuture<V extends @Nullable Object>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Preconditions;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import java.util.concurrent.Executor;
import org.checkerframework.checker.nullness.qual.Nullable;

Expand All @@ -30,7 +29,6 @@
* @author Shardul Deo
* @since 4.0
*/
@CanIgnoreReturnValue // TODO(cpovirk): Consider being more strict.
@GwtCompatible
@ElementTypesAreNonnullByDefault
public abstract class ForwardingListenableFuture<V extends @Nullable Object>
Expand Down

0 comments on commit 4ddae0d

Please sign in to comment.