|
|
|
|
@ -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();
|
|
|
|
|
}
|
|
|
|
|
|