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

@ -882,8 +882,8 @@ public class IPAddressUtil {
private static final int[] SUPPORTED_RADIXES = new int[]{HEXADECIMAL, OCTAL, DECIMAL};
// BSD parser's return values
private final static long CANT_PARSE_IN_RADIX = -1L;
private final static long TERMINAL_PARSE_ERROR = -2L;
private static final long CANT_PARSE_IN_RADIX = -1L;
private static final long TERMINAL_PARSE_ERROR = -2L;
private static final String ALLOW_AMBIGUOUS_IPADDRESS_LITERALS_SP = "jdk.net.allowAmbiguousIPAddressLiterals";
private static final boolean ALLOW_AMBIGUOUS_IPADDRESS_LITERALS_SP_VALUE = Boolean.valueOf(

View file

@ -205,7 +205,7 @@ public sealed class IntegerPolynomialModBinP extends IntegerPolynomial {
/**
* The field of integers modulo the order of the Curve25519 subgroup
*/
public final static class Curve25519OrderField extends IntegerPolynomialModBinP {
public static final class Curve25519OrderField extends IntegerPolynomialModBinP {
public Curve25519OrderField() {
super(26, 10, 252,
@ -216,7 +216,7 @@ public sealed class IntegerPolynomialModBinP extends IntegerPolynomial {
/**
* The field of integers modulo the order of the Curve448 subgroup
*/
public final static class Curve448OrderField extends IntegerPolynomialModBinP {
public static final class Curve448OrderField extends IntegerPolynomialModBinP {
public Curve448OrderField() {
super(28, 16, 446,