Returns a localized message. @param key The key. @param params Any parameters for the message. @return The localized message.
(String key, String... params)
| 144 | * @return The localized message. |
| 145 | */ |
| 146 | public String getString(String key, String... params) { |
| 147 | String temp = MSG.getString(key); |
| 148 | return MessageFormat.format(temp, (Object[])params); |
| 149 | } |
| 150 | |
| 151 | |
| 152 | @Override |
no outgoing calls
no test coverage detected