So... seems like we both push to master. #3

Merged
alisolarflare merged 3 commits from master into dev 2017-06-10 07:25:12 +00:00
Showing only changes of commit 4707c4fe2f - Show all commits

View file

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