Commit d6bcd83188e0b99a3456cda538968315ec8d6209
1 parent
1681d12b
Exists in
master
remove empty print
Showing
2 changed files
with
1 additions
and
4 deletions
Show diff stats
build.gradle
src/main/java/com/taover/easyexcel/read/processor/DefaultAnalysisEventProcessor.java
| ... | ... | @@ -37,9 +37,6 @@ public class DefaultAnalysisEventProcessor implements AnalysisEventProcessor { |
| 37 | 37 | @Override |
| 38 | 38 | public void endRow(AnalysisContext analysisContext) { |
| 39 | 39 | if (RowTypeEnum.EMPTY.equals(analysisContext.readRowHolder().getRowType())) { |
| 40 | - if (LOGGER.isDebugEnabled()) { | |
| 41 | - LOGGER.warn("Empty row!"); | |
| 42 | - } | |
| 43 | 40 | if (analysisContext.readWorkbookHolder().getIgnoreEmptyRow()) { |
| 44 | 41 | return; |
| 45 | 42 | } | ... | ... |