mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +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
|
@ -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(
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue