Skip to content

Commit

Permalink
Remove @Beta from TestingExecutors.sameThreadScheduledExecutor.
Browse files Browse the repository at this point in the history
We'd kept `@Beta` a year ago (cl/531554997) just in case there was any unexpected fallout from a small signature change at the time. As expected, all has gone well, so we can feel safe removing `@Beta`.

RELNOTES=n/a
PiperOrigin-RevId: 634813359
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed May 17, 2024
1 parent ec7069a commit dd2fac8
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 @@ -18,7 +18,6 @@

import static java.util.concurrent.TimeUnit.NANOSECONDS;

import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtIncompatible;
import com.google.common.collect.ImmutableList;
import com.google.common.primitives.Longs;
Expand Down Expand Up @@ -92,7 +91,6 @@ public static ListeningScheduledExecutorService noOpScheduledExecutor() {
*
* @since 32.0.0 (taking the place of a method with a different return type from 15.0)
*/
@Beta
public static ListeningScheduledExecutorService sameThreadScheduledExecutor() {
return new SameThreadScheduledExecutorService();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import static java.util.concurrent.TimeUnit.NANOSECONDS;

import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtIncompatible;
import com.google.common.collect.ImmutableList;
import com.google.common.primitives.Longs;
Expand Down Expand Up @@ -92,7 +91,6 @@ public static ListeningScheduledExecutorService noOpScheduledExecutor() {
*
* @since 32.0.0 (taking the place of a method with a different return type from 15.0)
*/
@Beta
public static ListeningScheduledExecutorService sameThreadScheduledExecutor() {
return new SameThreadScheduledExecutorService();
}
Expand Down

0 comments on commit dd2fac8

Please sign in to comment.