Skip to content

Commit

Permalink
Remove @Beta from setFuture.
Browse files Browse the repository at this point in the history
RELNOTES=Removed `@Beta` from `setFuture`.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=251241741
  • Loading branch information
cpovirk authored and ronshapiro committed Jun 6, 2019
1 parent b72102d commit 5ec1360
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 6 deletions.
Expand Up @@ -777,7 +777,6 @@ protected boolean setException(Throwable throwable) {
* cancelled or set.
* @since 19.0
*/
@Beta
@CanIgnoreReturnValue
protected boolean setFuture(ListenableFuture<? extends V> future) {
checkNotNull(future);
Expand Down
Expand Up @@ -14,7 +14,6 @@

package com.google.common.util.concurrent;

import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import org.checkerframework.checker.nullness.compatqual.NullableDecl;
Expand Down Expand Up @@ -54,7 +53,6 @@ public boolean setException(Throwable throwable) {
return super.setException(throwable);
}

@Beta
@CanIgnoreReturnValue
@Override
public boolean setFuture(ListenableFuture<? extends V> future) {
Expand Down
Expand Up @@ -777,7 +777,6 @@ protected boolean setException(Throwable throwable) {
* cancelled or set.
* @since 19.0
*/
@Beta
@CanIgnoreReturnValue
protected boolean setFuture(ListenableFuture<? extends V> future) {
checkNotNull(future);
Expand Down
Expand Up @@ -14,7 +14,6 @@

package com.google.common.util.concurrent;

import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import org.checkerframework.checker.nullness.qual.Nullable;
Expand Down Expand Up @@ -54,7 +53,6 @@ public boolean setException(Throwable throwable) {
return super.setException(throwable);
}

@Beta
@CanIgnoreReturnValue
@Override
public boolean setFuture(ListenableFuture<? extends V> future) {
Expand Down

0 comments on commit 5ec1360

Please sign in to comment.