Gets the correct i18n message for the given key. @param key The key to look up an i18n message. @return The i18n message.
(final String key)
| 208 | * @return The i18n message. |
| 209 | */ |
| 210 | public static String getMessage(final String key) { |
| 211 | return getMessage(key, (Object[]) null); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Gets the correct i18n message for the given key with placeholders replaced by the supplied arguments. |
no test coverage detected