mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +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
|
@ -801,7 +801,7 @@ public abstract class VectorOperators {
|
|||
kind, dom, ran);
|
||||
}
|
||||
|
||||
private static abstract class OperatorImpl implements Operator {
|
||||
private abstract static class OperatorImpl implements Operator {
|
||||
private final String symName;
|
||||
private final String opName;
|
||||
private final int opInfo;
|
||||
|
@ -1111,7 +1111,7 @@ public abstract class VectorOperators {
|
|||
private static final @Stable ConversionImpl<?,?>[][][]
|
||||
CACHES = new ConversionImpl<?,?>[KIND_LIMIT][LINE_LIMIT][LINE_LIMIT];
|
||||
|
||||
private synchronized static void initCaches() {
|
||||
private static synchronized void initCaches() {
|
||||
for (var f : VectorOperators.class.getFields()) {
|
||||
if (f.getType() != Conversion.class) continue;
|
||||
ConversionImpl<?,?> conv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue