-
Notifications
You must be signed in to change notification settings - Fork 994
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alert define export tags combine #1506
Conversation
// List<List<TagItem>> tagsList = new ArrayList<>(); | ||
// for (int i = 0; i < startRowList.size(); i++) { | ||
// int startRowIndex = startRowList.get(i); | ||
// int endRowIndex = (i + 1 < startRowList.size() ? startRowList.get(i + 1) : sheet.getLastRowNum() + 1); | ||
// List<TagItem> tags = new ArrayList<>(); | ||
// | ||
// for (int j = startRowIndex; j < endRowIndex; j++) { | ||
// Row row = sheet.getRow(j); | ||
// if (row == null) { | ||
// continue; | ||
// } | ||
// TagItem tagItem = extractTagDataFromRow(row); | ||
// if (tagItem != null) { | ||
// tags.add(tagItem); | ||
// } | ||
// } | ||
// tagsList.add(tags); | ||
// } | ||
// for (int i = 0; i < alertDefines.size(); i++) { | ||
// alertDefines.get(i).getAlertDefine().setTags(tagsList.get(i)); | ||
// } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can delete the unused code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
Co-authored-by: 淞筱 <105542329+a-little-fool@users.noreply.github.com>
What's changed?
Alert define export tags combine
Checklist
Add or update API