codeConverter 수정

main
이범준 12 months ago
parent bfc8bf3776
commit e22bc9bf05

@ -34,7 +34,7 @@ public class CodeConverter {
List<CommonCode> commonCodeList = commonCodes.get(codeGroupName);
for(int i = 0; i < commonCodeList.size(); i++) {
for(int i = 0, size = commonCodeList != null ? commonCodeList.size() : 0; i < size; i++) {
if(value.replaceAll(Matcher.quoteReplacement(" "), "").equals(commonCodeList.get(i).getValue().replaceAll(Matcher.quoteReplacement(" "), ""))) {
result = commonCodeList.get(i).getCode();
}

Loading…
Cancel
Save