fix: add headless call in beginning of execution

- fixes: #1997
This commit is contained in:
Connor Tumbleson 2019-01-25 15:42:07 -05:00
parent 29355f876d
commit 6d1792a98d

View File

@ -36,6 +36,9 @@ import java.util.logging.*;
public class Main {
public static void main(String[] args) throws IOException, InterruptedException, BrutException {
// headless
System.setProperty("java.awt.headless", "true");
// set verbosity default
Verbosity verbosity = Verbosity.NORMAL;