mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8263658: Use the blessed modifier order in java.base
Reviewed-by: rriggs, redestad
This commit is contained in:
parent
1572f3ccdd
commit
b49c589340
28 changed files with 139 additions and 139 deletions
|
@ -411,7 +411,7 @@ enum SSLCipher {
|
|||
private static final HashMap<String, Long> cipherLimits = new HashMap<>();
|
||||
|
||||
// Keywords found on the jdk.tls.keyLimits security property.
|
||||
final static String[] tag = {"KEYUPDATE"};
|
||||
static final String[] tag = {"KEYUPDATE"};
|
||||
|
||||
static {
|
||||
final long max = 4611686018427387904L; // 2^62
|
||||
|
|
|
@ -58,9 +58,9 @@ import sun.security.util.Cache;
|
|||
*/
|
||||
|
||||
final class SSLSessionContextImpl implements SSLSessionContext {
|
||||
private final static int DEFAULT_MAX_CACHE_SIZE = 20480;
|
||||
private static final int DEFAULT_MAX_CACHE_SIZE = 20480;
|
||||
// Default lifetime of a session. 24 hours
|
||||
final static int DEFAULT_SESSION_TIMEOUT = 86400;
|
||||
static final int DEFAULT_SESSION_TIMEOUT = 86400;
|
||||
|
||||
private final Cache<SessionId, SSLSessionImpl> sessionCache;
|
||||
// session cache, session id as key
|
||||
|
|
|
@ -112,7 +112,7 @@ final class SessionTicketExtension {
|
|||
}
|
||||
|
||||
// Crypto key context for session state. Used with stateless operation.
|
||||
final static class StatelessKey {
|
||||
static final class StatelessKey {
|
||||
final long timeout;
|
||||
final SecretKey key;
|
||||
final int num;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue