launcher/fx/src/main/java/org/apidesign/bck2brwsr/launcher/BaseHTTPLauncher.java
branchclosure
changeset 1505 706b66d8c481
parent 1504 d058edd87424
child 1513 ba912ef24b27
     1.1 --- a/launcher/fx/src/main/java/org/apidesign/bck2brwsr/launcher/BaseHTTPLauncher.java	Tue Apr 29 14:28:52 2014 +0200
     1.2 +++ b/launcher/fx/src/main/java/org/apidesign/bck2brwsr/launcher/BaseHTTPLauncher.java	Tue Apr 29 14:59:40 2014 +0200
     1.3 @@ -53,7 +53,6 @@
     1.4  import org.glassfish.grizzly.http.server.Response;
     1.5  import org.glassfish.grizzly.http.server.ServerConfiguration;
     1.6  import org.glassfish.grizzly.http.util.HttpStatus;
     1.7 -import org.glassfish.grizzly.threadpool.ThreadPoolConfig;
     1.8  
     1.9  /**
    1.10   * Lightweight server to launch Bck2Brwsr applications and tests.
    1.11 @@ -500,7 +499,7 @@
    1.12      String compileJar(JarFile jar) throws IOException {
    1.13          return null;
    1.14      }
    1.15 -    String compileFromClassPath(URL f, Res loader) {
    1.16 +    String compileFromClassPath(URL f, Res loader) throws IOException {
    1.17          return null;
    1.18      }
    1.19  
    1.20 @@ -508,7 +507,7 @@
    1.21          String compileJar(JarFile jar) throws IOException {
    1.22              return BaseHTTPLauncher.this.compileJar(jar);
    1.23          }
    1.24 -        String compileFromClassPath(URL f) {
    1.25 +        String compileFromClassPath(URL f) throws IOException {
    1.26              return BaseHTTPLauncher.this.compileFromClassPath(f, this);
    1.27          }
    1.28          public URL get(String resource) throws IOException {