This commit is contained in:
Looly
2019-09-28 03:13:27 +08:00
parent daf85caf9e
commit 596a4f1e57
110 changed files with 535 additions and 617 deletions

View File

@@ -14,5 +14,5 @@ public interface CellEditor {
* @param value 单元格值
* @return 编辑后的对象
*/
public Object edit(Cell cell, Object value);
Object edit(Cell cell, Object value);
}

View File

@@ -329,11 +329,7 @@ public class CellUtil {
return true;
}
if (org.apache.poi.ss.usermodel.DateUtil.isCellDateFormatted(cell)) {
return true;
}
return false;
return org.apache.poi.ss.usermodel.DateUtil.isCellDateFormatted(cell);
}
// -------------------------------------------------------------------------------------------------------------- Private method end
}

View File

@@ -32,7 +32,7 @@ public enum CellDataType {
*
* @param name 类型属性值
*/
private CellDataType(String name) {
CellDataType(String name) {
this.name = name;
}

View File

@@ -1,6 +1,3 @@
/**
*
*/
package cn.hutool.poi.excel.test;
import java.util.ArrayList;

View File

@@ -1,6 +1,3 @@
/**
*
*/
package cn.hutool.poi.excel.test;
import java.util.ArrayList;