Skip to content

Commit

Permalink
Make error silently
Browse files Browse the repository at this point in the history
  • Loading branch information
Quackster committed Jan 22, 2023
1 parent 5389deb commit 1d863a7
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,7 @@ public void run() {
int port = url.getPort() == -1 ? 80 : url.getPort();

IS_IMAGER_ONLINE = isServerOnline(hostname, port);
} catch (MalformedURLException e) {
e.printStackTrace();
}
} catch (MalformedURLException e) { }

}

Expand Down

0 comments on commit 1d863a7

Please sign in to comment.