Made usage of StaticContent less convoluted.
[jsvc.git] / samples / bsh / src / dolda / bsvc / Main.java
index d6a83d2..9deae0e 100644 (file)
@@ -7,7 +7,7 @@ public class Main {
     public static Responder responder() {
        Multiplexer root = new Multiplexer();
        root.file("sh", new PerSession(ShellPage.class));
-       root.file("css", new StaticContent(Main.class, "static/base.css", false, "text/css"));
+       root.file("css", new StaticContent(Main.class, "static/base.css", "text/css"));
        return(Misc.stdroot(root));
     }
 }