提交 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 {
}
if (OPEN_EXTERNAL_LINKS) {
System.out.println(link);
Server.openBrowser(link);
try {
Server.openBrowser(link);
Thread.sleep(100);
} catch (InterruptedException e) {
} catch (Exception e) {
// ignore
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论