diff --git a/yxt-common/yxt-common-base/src/main/java/com/yxt/common/base/utils/WordConvertUtils.java b/yxt-common/yxt-common-base/src/main/java/com/yxt/common/base/utils/WordConvertUtils.java index 4528fe1..bc30708 100644 --- a/yxt-common/yxt-common-base/src/main/java/com/yxt/common/base/utils/WordConvertUtils.java +++ b/yxt-common/yxt-common-base/src/main/java/com/yxt/common/base/utils/WordConvertUtils.java @@ -87,7 +87,6 @@ public class WordConvertUtils { OutputStream os = null; try { os = new FileOutputStream(file); - int bytesRead = 0; byte[] buffer = new byte[8192]; while ((bytesRead = ins.read(buffer, 0, 8192)) != -1) { @@ -147,7 +146,6 @@ public class WordConvertUtils { ComThread.Release(); new File(wordFile).delete(); } - } /**