fixed incorrect initialization of --noheader option in BiffViewer

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@893869 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2009-12-25 15:13:26 +00:00
parent cf6b1118b4
commit b3093fc671

View File

@ -308,7 +308,7 @@ public final class BiffViewer {
} else if ("--rawhex".equals(arg)) {
rawhex = true;
} else if ("--noheader".equals(arg)) {
noheader = false;
noheader = true;
} else {
throw new CommandParseException("Unexpected option '" + arg + "'");
}