Fixed error in printing values in the Enum value parser

This commit is contained in:
nsingh
2017-01-19 11:34:48 -08:00
parent 48cf75d228
commit 2c0e536026

View File

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