Skip to content

Commit ad57f52

Browse files
java-team-github-botGoogle Java Core Libraries
authored and
Google Java Core Libraries
committed
Add a Sequential Executor implementation for the j2kt super source. Also remove an J2KtIncompatible annotation.
RELNOTES=n/a PiperOrigin-RevId: 650387739
1 parent 2c24eb8 commit ad57f52

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

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

-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,6 @@ public static Executor directExecutor() {
377377
*
378378
* @since 23.3 (since 23.1 as {@code sequentialExecutor})
379379
*/
380-
@J2ktIncompatible
381380
@GwtIncompatible
382381
public static Executor newSequentialExecutor(Executor delegate) {
383382
return new SequentialExecutor(delegate);

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

-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ public static Executor directExecutor() {
438438
*
439439
* @since 23.3 (since 23.1 as {@code sequentialExecutor})
440440
*/
441-
@J2ktIncompatible
442441
@GwtIncompatible
443442
public static Executor newSequentialExecutor(Executor delegate) {
444443
return new SequentialExecutor(delegate);

0 commit comments

Comments
 (0)