log.warn("There was an error while processing a TranslationKey", e);
}
// Figure out the translation key value (for the null locale).
String value = null;
TranslationKey annotation = metaField.getAnnotation(TranslationKey.class);
String defaultValue = annotation.defaultValue();
if (defaultValue != null) {
value = defaultValue;
}
else {
value = "!!" + defaultName + "!!";