Skip to content

Commit

Permalink
Add a Sequential Executor implementation for the j2kt super source. A…
Browse files Browse the repository at this point in the history
…lso remove an J2KtIncompatible annotation.

RELNOTES=n/a
PiperOrigin-RevId: 650387739
  • Loading branch information
java-team-github-bot authored and Google Java Core Libraries committed Jul 8, 2024
1 parent 2c24eb8 commit ad57f52
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ public static Executor directExecutor() {
*
* @since 23.3 (since 23.1 as {@code sequentialExecutor})
*/
@J2ktIncompatible
@GwtIncompatible
public static Executor newSequentialExecutor(Executor delegate) {
return new SequentialExecutor(delegate);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,6 @@ public static Executor directExecutor() {
*
* @since 23.3 (since 23.1 as {@code sequentialExecutor})
*/
@J2ktIncompatible
@GwtIncompatible
public static Executor newSequentialExecutor(Executor delegate) {
return new SequentialExecutor(delegate);
Expand Down

0 comments on commit ad57f52

Please sign in to comment.