Summary
Update description of "Cyrillic Supplementary" block in Character.UnicodeBlock class.
Problem
Unicode 4.0.1 renamed the "Cyrillic Supplementary" block to "Cyrillic Supplement". But API doc of Character.UnicodeBlock still mentions its old block name "Cyrillic Supplementary" .
Solution
Solution is to update API doc of Character.UnicodeBlock class.
Specification
changing
/**
* Constant for the "Cyrillic Supplementary" Unicode character block.
* @since 1.5
*/
to
/**
* Constant for the "Cyrillic Supplement" Unicode character block.
* This block was previously known as the "Cyrillic Supplementary" block.
* @since 1.5
*/
- csr of
-
JDK-8203474 Update description of "Cyrillic Supplementary" block name in Character.UnicodeBlock class.
- Closed