Renamed WebServer to HttpServer and WebServerRequest to HttpServerConnection.

This commit is contained in:
FrozenCow 2011-02-05 20:53:42 +01:00
parent 2a79aea7bb
commit debf5bcc57
4 changed files with 11 additions and 11 deletions

View file

@ -14,7 +14,7 @@ public class HttpResponse {
private OutputStream body;
public OutputStream getBody() throws IOException {
if (body != null) {
WebServerRequest.writeResponseHeader(body, this);
HttpServerConnection.writeResponseHeader(body, this);
OutputStream b = body;
body = null;
return b;