read(..) 수정

master
mjkhan21 8 months ago
parent 37b5e33fc2
commit 45ae0aa1eb

@ -40,8 +40,7 @@ public class Ye22NoticeReader extends AbstractComponent {
private Ye22NoticeInfoDTO read(String[] strs) {
Ye22NoticeInfoDTO notice = null;
for (int i = 0; i < strs.length; ++i) {
String str = strs[i];
str = str != null ? str.trim() : "";
String str = blankIfEmpty(strs[i]).trim();
if (isLabel(str)) return null;
if (notice == null)

Loading…
Cancel
Save