1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-03 05:07:46 +00:00

Make error silently

This commit is contained in:
Quackster 2023-01-22 10:49:56 +10:00
parent 5389deb152
commit 1d863a7c2b

View file

@ -86,9 +86,7 @@ public class Watchdog implements Runnable {
int port = url.getPort() == -1 ? 80 : url.getPort(); int port = url.getPort() == -1 ? 80 : url.getPort();
IS_IMAGER_ONLINE = isServerOnline(hostname, port); IS_IMAGER_ONLINE = isServerOnline(hostname, port);
} catch (MalformedURLException e) { } catch (MalformedURLException e) { }
e.printStackTrace();
}
} }