Proposed change to implement Feature requeeeessssst

This commit is contained in:
alisolarflare 2017-06-10 00:19:07 -07:00 committed by GitHub
parent ee57821c87
commit 4707c4fe2f

View file

@ -12,4 +12,9 @@ public class Response {
this.content = content;
this.exchange = exchange;
}
public Response(int code, String[] content, HttpExchange exchange) {
this.code = code;
this.content = String.join("", content);
this.exchange = exchange;
}
}