(String pattern, Locale locale)
| 35 | private final Locale locale; |
| 36 | |
| 37 | public MessageFormat(String pattern, Locale locale) { |
| 38 | this.pattern = pattern; |
| 39 | this.locale = locale; |
| 40 | } |
| 41 | |
| 42 | public MessageFormat(String pattern) { |
| 43 | this(pattern, Locale.getDefault()); |
nothing calls this directly
no test coverage detected