Cosmetic code-style fix.

This commit is contained in:
Kris De Volder
2017-01-19 11:45:19 -08:00
parent 2c0e536026
commit edb4ed1f2e

View File

@@ -60,8 +60,8 @@ public class EnumValueParser implements ValueParser {
return "'"+typeName+"'" + " cannot be blank.";
}
protected String createErrorMessage(String parseString, Collection<String> values2) {
return "'"+parseString+"' is not valid for Enum '"+typeName+"'. Valid values are: "+values2;
protected String createErrorMessage(String parseString, Collection<String> values) {
return "'"+parseString+"' is not valid for Enum '"+typeName+"'. Valid values are: "+values;
}
}