Github user cestella commented on a diff in the pull request:
https://github.com/apache/metron/pull/785#discussion_r143555004
--- Diff:
metron-platform/metron-parsers/src/main/java/org/apache/metron/parsers/topology/ParserTopologyCLI.java
---
@@ -285,7 +285,14 @@ public static Options getOptions() {
}
private static CommandLine parse(Options options, String[] args) {
- CommandLineParser parser = new PosixParser();
+ CommandLineParser parser = new PosixParser() {
+ @Override
+ protected void processOption(String arg, ListIterator iter) throws
ParseException {
--- End diff --
nvm, if there's a question, then the answer is that we need a comment here.
---