I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 31e81bab authored by aum's avatar aum Committed by zzz
Browse files

fixed build failures

parent 6a5170c3
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,13 @@ public class MiniHttpRequestPage extends MiniHttpRequestHandler {
/** the 'body' portion of our response page */
protected Tag body;
public MiniHttpRequestPage(MiniHttpServer server, Object socket) throws Exception {
super(server, socket, null);
this.page = new HtmlPage();
head = page.head;
body = page.body;
}
/** Creates a new instance of MiniHttpRequestPage */
public MiniHttpRequestPage(MiniHttpServer server, Object socket, Object arg) throws Exception {
super(server, socket, arg);
......
......@@ -7,10 +7,10 @@ package net.i2p.aum.test;
import java.util.*;
import net.i2p.aum.http.*;
public class HttpServerTest extends MiniHttpRequestHandler {
public class HttpServerTest extends MiniHttpRequestPage {
public HttpServerTest(Object socket) throws Exception {
super(socket);
public HttpServerTest(MiniHttpServer serv, Object socket) throws Exception {
super(serv, socket);
}
public void on_GET() throws Exception {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment