whitespace (3 spaces and tabs to 4 spaces)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751179 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-07-03 23:05:52 +00:00
parent c54deaf3ff
commit 227ae30154

View File

@ -35,7 +35,7 @@ import org.apache.poi.hsmf.datatypes.MAPIProperty;
*/
public final class HMEFContentsExtractor {
public static void main(String[] args) throws Exception {
if(args.length < 2) {
if (args.length < 2) {
System.err.println("Use:");
System.err.println(" HMEFContentsExtractor <filename> <output dir>");
System.err.println("");
@ -49,7 +49,7 @@ public final class HMEFContentsExtractor {
File dir = new File(args[1]);
File rtf = new File(dir, "message.rtf");
if(! dir.exists()) {
if (! dir.exists()) {
throw new FileNotFoundException("Output directory " + dir.getName() + " not found");
}