Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

public class Main {
@SuppressFBWarnings("DM_EXIT")
/* The @SuppressFBWarnings("DM_EXIT") annotation is used to
suppress FindBugs warnings related to direct use of System.exit().
Since the purpose of its usage is deliberate by the developer.
*/
public static void main(String[] args) throws IOException {
CliOptions options = new CliOptions();
ParserProperties parserProperties = ParserProperties.defaults().withUsageWidth(150);
Expand Down