Skip to content

Commit

Permalink
[breaking] format - Removed trailing carriage return from AbstractRes…
Browse files Browse the repository at this point in the history
…ponse when run under windows platform
  • Loading branch information
fcamblor committed May 12, 2019
1 parent 55aa706 commit 3cc745c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion restx-core/src/main/java/restx/AbstractResponse.java
Expand Up @@ -104,7 +104,8 @@ public void close() throws Exception {
}
try {
if (writer != null) {
writer.println();
writer.print("\n");
writer.flush();
writer.close();
}
if (outputStream != null) {
Expand Down

0 comments on commit 3cc745c

Please sign in to comment.