mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-8856 Explicit private constructor to prevent MessagePatternUtil instatiation. This change fixed unwanted javadoc/api report for MessagePatternUtil constructor.
X-SVN-Rev: 30791
This commit is contained in:
parent
53eb6fa62f
commit
ed2c135303
1 changed files with 5 additions and 0 deletions
|
@ -27,6 +27,11 @@ import java.util.List;
|
|||
* @author Markus Scherer
|
||||
*/
|
||||
public final class MessagePatternUtil {
|
||||
|
||||
// Private constructor preventing object instantiation
|
||||
private MessagePatternUtil() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Factory method, builds and returns a MessageNode from a MessageFormat pattern string.
|
||||
* @param patternString a MessageFormat pattern string
|
||||
|
|
Loading…
Add table
Reference in a new issue