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

@ -272,7 +272,7 @@ class ThreadBuilders {
/**
* Base ThreadFactory implementation.
*/
private static abstract class BaseThreadFactory implements ThreadFactory {
private abstract static class BaseThreadFactory implements ThreadFactory {
private static final VarHandle COUNT;
static {
try {

View file

@ -424,7 +424,7 @@ class FormatItem {
}
}
static abstract sealed class FormatItemModifier implements FormatConcatItem
abstract static sealed class FormatItemModifier implements FormatConcatItem
permits FormatItemFillLeft,
FormatItemFillRight
{

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;