Trim comma separation in items.csv parsing.

This commit is contained in:
Ali Moghnieh 2017-07-03 14:18:27 +01:00
parent 9a714eb537
commit 781204aa20
No known key found for this signature in database
GPG key ID: F09D3A1BAF2E6D70

View file

@ -72,7 +72,7 @@ public class ItemDb implements IConf, net.ess3.api.IItemDb {
if (StringUtils.stripToNull(match) == null) {
continue;
}
match = StringUtils.strip(match, "\"");
match = StringUtils.strip(match.trim(), "\"");
switch (col) {
case 0:
itemName = match.toLowerCase(Locale.ENGLISH);