8325109: Sort method modifiers in canonical order

Reviewed-by: aivanov, rriggs, darcy, prappo
This commit is contained in:
Magnus Ihse Bursie 2024-02-07 15:50:40 +00:00
parent a3a2b1fbbf
commit 18e24d0619
39 changed files with 61 additions and 61 deletions

View file

@ -1624,7 +1624,7 @@ public abstract class ForkJoinTask<V> implements Future<V>, Serializable {
* been cancelled on entry and might not otherwise be cancelled by
* others.
*/
static abstract class InterruptibleTask<T> extends ForkJoinTask<T>
abstract static class InterruptibleTask<T> extends ForkJoinTask<T>
implements RunnableFuture<T> {
transient volatile Thread runner;
abstract T compute() throws Exception;