mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8325109: Sort method modifiers in canonical order
Reviewed-by: aivanov, rriggs, darcy, prappo
This commit is contained in:
parent
a3a2b1fbbf
commit
18e24d0619
39 changed files with 61 additions and 61 deletions
|
@ -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 {
|
||||
|
|
|
@ -424,7 +424,7 @@ class FormatItem {
|
|||
}
|
||||
}
|
||||
|
||||
static abstract sealed class FormatItemModifier implements FormatConcatItem
|
||||
abstract static sealed class FormatItemModifier implements FormatConcatItem
|
||||
permits FormatItemFillLeft,
|
||||
FormatItemFillRight
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue