Skip to content

Commit 5ec1360

Browse files
cpovirkronshapiro
authored andcommitted
Remove @Beta from setFuture.
RELNOTES=Removed `@Beta` from `setFuture`. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=251241741
1 parent b72102d commit 5ec1360

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,6 @@ protected boolean setException(Throwable throwable) {
777777
* cancelled or set.
778778
* @since 19.0
779779
*/
780-
@Beta
781780
@CanIgnoreReturnValue
782781
protected boolean setFuture(ListenableFuture<? extends V> future) {
783782
checkNotNull(future);

android/guava/src/com/google/common/util/concurrent/SettableFuture.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
package com.google.common.util.concurrent;
1616

17-
import com.google.common.annotations.Beta;
1817
import com.google.common.annotations.GwtCompatible;
1918
import com.google.errorprone.annotations.CanIgnoreReturnValue;
2019
import org.checkerframework.checker.nullness.compatqual.NullableDecl;
@@ -54,7 +53,6 @@ public boolean setException(Throwable throwable) {
5453
return super.setException(throwable);
5554
}
5655

57-
@Beta
5856
@CanIgnoreReturnValue
5957
@Override
6058
public boolean setFuture(ListenableFuture<? extends V> future) {

guava/src/com/google/common/util/concurrent/AbstractFuture.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,6 @@ protected boolean setException(Throwable throwable) {
777777
* cancelled or set.
778778
* @since 19.0
779779
*/
780-
@Beta
781780
@CanIgnoreReturnValue
782781
protected boolean setFuture(ListenableFuture<? extends V> future) {
783782
checkNotNull(future);

guava/src/com/google/common/util/concurrent/SettableFuture.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
package com.google.common.util.concurrent;
1616

17-
import com.google.common.annotations.Beta;
1817
import com.google.common.annotations.GwtCompatible;
1918
import com.google.errorprone.annotations.CanIgnoreReturnValue;
2019
import org.checkerframework.checker.nullness.qual.Nullable;
@@ -54,7 +53,6 @@ public boolean setException(Throwable throwable) {
5453
return super.setException(throwable);
5554
}
5655

57-
@Beta
5856
@CanIgnoreReturnValue
5957
@Override
6058
public boolean setFuture(ListenableFuture<? extends V> future) {

0 commit comments

Comments
 (0)