mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8258736: No break in the loop
Reviewed-by: wetmore
This commit is contained in:
parent
01d51a101a
commit
12297a00ef
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -532,6 +532,7 @@ enum SSLCipher {
|
|||
for (ProtocolVersion pv : me.getValue()) {
|
||||
if (protocolVersion == pv) {
|
||||
rcg = me.getKey();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -557,6 +558,7 @@ enum SSLCipher {
|
|||
for (ProtocolVersion pv : me.getValue()) {
|
||||
if (protocolVersion == pv) {
|
||||
wcg = me.getKey();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue