(String localeID, String languagesDirectory)
| 39 | } |
| 40 | |
| 41 | public void initialize(String localeID, String languagesDirectory) { |
| 42 | setLanguage(localeID, languagesDirectory); |
| 43 | } |
| 44 | |
| 45 | public String convert(String value, String fromEncoding, String toEncoding) throws UnsupportedEncodingException { |
| 46 | return new String(value.getBytes(fromEncoding), toEncoding); |
nothing calls this directly
no test coverage detected