Bump dependencies to latest stable versions

Change-Id: I5e8903e55843a671408d0fee213b694f1d27669e
This commit is contained in:
Anatol Pomozov
2011-01-05 13:15:57 -08:00
parent ba318f25bb
commit 76de00db80
6 changed files with 207 additions and 36 deletions

View File

@@ -258,7 +258,7 @@ public class Init extends SiteProgram {
}
}
void start() throws IOException {
void start() throws Exception {
if (flags.autoStart) {
if (HostPlatform.isWin32()) {
System.err.println("Automatic startup not supported on Win32.");

View File

@@ -33,11 +33,11 @@ public class Browser {
this.cfg = cfg;
}
public void open() throws IOException {
public void open() throws Exception {
open(null /* root page */);
}
public void open(final String link) throws IOException {
public void open(final String link) throws Exception {
String url = cfg.getString("httpd", null, "listenUrl");
if (url == null) {
return;