diff options
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) { |