提交 c490d624 authored 作者: Thomas Mueller's avatar Thomas Mueller

Server.openBrowser no longer writes to System.out directly if opening the URL failed.

上级 fbff440a
...@@ -60,10 +60,10 @@ public class LinkChecker { ...@@ -60,10 +60,10 @@ public class LinkChecker {
} }
if (OPEN_EXTERNAL_LINKS) { if (OPEN_EXTERNAL_LINKS) {
System.out.println(link); System.out.println(link);
Server.openBrowser(link);
try { try {
Server.openBrowser(link);
Thread.sleep(100); Thread.sleep(100);
} catch (InterruptedException e) { } catch (Exception e) {
// ignore // ignore
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论