read(..) 수정

master
mjkhan21 9 months ago
parent 37b5e33fc2
commit 45ae0aa1eb

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

Loading…
Cancel
Save