diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-07-16 20:21:22 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-07-16 20:21:22 +0000 |
commit | 773ad5e8251a43b822793cb265a04a80793be4c7 (patch) | |
tree | 4b8f2a17a0784c1b57949c5e79481b8d406e01dd /poi-examples | |
parent | 46b14041bf1fd3eaf298bac69bf1927b65459d1e (diff) | |
download | poi-773ad5e8251a43b822793cb265a04a80793be4c7.tar.gz poi-773ad5e8251a43b822793cb265a04a80793be4c7.zip |
[github-356] accept some of the changes in this PR (not all)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902784 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-examples')
-rw-r--r-- | poi-examples/src/main/java/org/apache/poi/examples/hsmf/Msg2txt.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-examples/src/main/java/org/apache/poi/examples/hsmf/Msg2txt.java b/poi-examples/src/main/java/org/apache/poi/examples/hsmf/Msg2txt.java index 151cfc6fa0..5b4d48f142 100644 --- a/poi-examples/src/main/java/org/apache/poi/examples/hsmf/Msg2txt.java +++ b/poi-examples/src/main/java/org/apache/poi/examples/hsmf/Msg2txt.java @@ -142,7 +142,7 @@ public class Msg2txt { * @param args the list of MSG files to process */ public static void main(String[] args) { - if(args.length <= 0) { + if(args.length == 0) { System.err.println("No files names provided"); } else { for (String arg : args) { |