mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8288624: Cleanup CommentHelper.getText0
Reviewed-by: hannesw
This commit is contained in:
parent
6e18883d8f
commit
572c14efc6
12 changed files with 237 additions and 197 deletions
|
@ -2364,25 +2364,24 @@ public final class Locale implements Cloneable, Serializable {
|
|||
/**
|
||||
* @serialField language String
|
||||
* language subtag in lower case.
|
||||
* (See <a href="java.base/java/util/Locale.html#getLanguage()">getLanguage()</a>)
|
||||
* (See {@link #getLanguage()})
|
||||
* @serialField country String
|
||||
* country subtag in upper case.
|
||||
* (See <a href="java.base/java/util/Locale.html#getCountry()">getCountry()</a>)
|
||||
* (See {@link #getCountry()})
|
||||
* @serialField variant String
|
||||
* variant subtags separated by LOWLINE characters.
|
||||
* (See <a href="java.base/java/util/Locale.html#getVariant()">getVariant()</a>)
|
||||
* (See {@link #getVariant()})
|
||||
* @serialField hashcode int
|
||||
* deprecated, for forward compatibility only
|
||||
* @serialField script String
|
||||
* script subtag in title case
|
||||
* (See <a href="java.base/java/util/Locale.html#getScript()">getScript()</a>)
|
||||
* (See {@link #getScript()})
|
||||
* @serialField extensions String
|
||||
* canonical representation of extensions, that is,
|
||||
* BCP47 extensions in alphabetical order followed by
|
||||
* BCP47 private use subtags, all in lower case letters
|
||||
* separated by HYPHEN-MINUS characters.
|
||||
* (See <a href="java.base/java/util/Locale.html#getExtensionKeys()">getExtensionKeys()</a>,
|
||||
* <a href="java.base/java/util/Locale.html#getExtension(char)">getExtension(char)</a>)
|
||||
* (See {@link #getExtensionKeys()}, {@link #getExtension(char)})
|
||||
*/
|
||||
@java.io.Serial
|
||||
private static final ObjectStreamField[] serialPersistentFields = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue