-
Bug
-
Resolution: Fixed
-
P3
-
None
-
b13
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8045771 | 8u25 | Yuka Kamiya | P3 | Resolved | Fixed | b01 |
JDK-8042579 | 8u20 | Yuka Kamiya | P3 | Resolved | Fixed | b15 |
JDK-8053599 | emb-8u26 | Yuka Kamiya | P3 | Resolved | Fixed | b17 |
2905 for (int i = 1; i < subtags.length; i++) {
2906 if (isSubtagIllFormed(subtags[i], false)) {
2907 isIllFormed = true;
2908 }
2909 break;
2910 }
Since the loop increment i++; is unreachable, the loop body will never execute more than once.
2906 if (isSubtagIllFormed(subtags[i], false)) {
2907 isIllFormed = true;
2908 }
2909 break;
2910 }
Since the loop increment i++; is unreachable, the loop body will never execute more than once.
- backported by
-
JDK-8042579 Subtag syntax check is incomplete in Locale.LanguageRange
- Resolved
-
JDK-8045771 Subtag syntax check is incomplete in Locale.LanguageRange
- Resolved
-
JDK-8053599 Subtag syntax check is incomplete in Locale.LanguageRange
- Resolved