mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -14,5 +14,5 @@ public interface CellEditor {
|
||||
* @param value 单元格值
|
||||
* @return 编辑后的对象
|
||||
*/
|
||||
public Object edit(Cell cell, Object value);
|
||||
Object edit(Cell cell, Object value);
|
||||
}
|
||||
|
@@ -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
|
||||
}
|
||||
|
@@ -32,7 +32,7 @@ public enum CellDataType {
|
||||
*
|
||||
* @param name 类型属性值
|
||||
*/
|
||||
private CellDataType(String name) {
|
||||
CellDataType(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
@@ -1,6 +1,3 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package cn.hutool.poi.excel.test;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@@ -1,6 +1,3 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package cn.hutool.poi.excel.test;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
Reference in New Issue
Block a user