We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e6dc0 commit d66b94bCopy full SHA for d66b94b
org/w3c/css/css/CssValidator.java
@@ -95,6 +95,11 @@ public static void main(String args[])
95
96
// first, we get the parameters and create an application context
97
try {
98
+ for (String param : args) {
99
+ if ("-h".equals(param) || "--help".equals(param) || "-help".equals(param)) {
100
+ throw new Exception();
101
+ }
102
103
style.getParams(args);
104
style.ac = new ApplContext(style.params.get("lang"));
105
System.err.println(style.params);
0 commit comments