Renamed WebServer to HttpServer and WebServerRequest to HttpServerConnection.
This commit is contained in:
parent
2a79aea7bb
commit
debf5bcc57
4 changed files with 11 additions and 11 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue