diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-12-17 21:42:19 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-12-17 21:42:19 +0000 |
commit | bd1d31e410f1ec6bd589e985216167b749158dfd (patch) | |
tree | 2840563849a4d4ee10b45dd7e164ccf003076ed5 /src/integrationtest | |
parent | 0e0d1d56da7d3ad69e80dae199a7f9741b385bb9 (diff) | |
download | poi-bd1d31e410f1ec6bd589e985216167b749158dfd.tar.gz poi-bd1d31e410f1ec6bd589e985216167b749158dfd.zip |
avoid string concats
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884573 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest')
-rw-r--r-- | src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java b/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java index 46897263ed..09025f4b3e 100644 --- a/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java +++ b/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java @@ -67,7 +67,7 @@ public class HSLFFileHandler extends SlideShowHandler { try { testOneFile(file); } catch (Throwable e) { - logger.log(POILogger.WARN, "Failed to handle file " + file, e); + logger.log(POILogger.WARN, "Failed to handle file ", file, e); } } } |