Commit f7ef46943ece46d1d4ea39f4ad64ff6dde7bb9a7

Authored by unknown
1 parent b1ff109a
Exists in master

1. 去除无关打印

build.gradle
... ... @@ -59,7 +59,7 @@ uploadArchives {
59 59 authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
60 60 }
61 61 pom.project {
62   - version '1.1.110'
  62 + version '1.1.112'
63 63 artifactId ARTIFACT_Id
64 64 groupId GROUP_ID
65 65 packaging TYPE
... ...
src/main/java/com/taover/util/UtilExcel.java
... ... @@ -449,7 +449,6 @@ public class UtilExcel {
449 449 h时mm分 ------- 32
450 450 yyyy-MM-dd HH:hh:ss 22
451 451 */
452   - System.out.println(cell.getCellStyle().getDataFormat());
453 452 short format = cell.getCellStyle().getDataFormat();
454 453 if (DateUtil.isCellDateFormatted(cell)) {
455 454 SimpleDateFormat sdf = null;
... ...