Merge pull request #1998 from iBotPeaches/issue-1997

fix: add headless call in beginning of execution
This commit is contained in:
Connor Tumbleson 2019-01-25 15:52:57 -05:00 committed by GitHub
commit 896569a822
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;