Skip to content

Commit

Permalink
Update Utils.java
Browse files Browse the repository at this point in the history
  • Loading branch information
iGio90 authored Apr 25, 2021
1 parent f3a7f26 commit 4e4cb65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static String readFromFile(InputStream is) throws IOException {
String content;
StringBuilder stringBuilder = new StringBuilder();
while ((content = bufferedReader.readLine()) != null) {
stringBuilder.append(content);
stringBuilder.append(content).append("\n");
}
is.close();
return stringBuilder.toString();
Expand Down

0 comments on commit 4e4cb65

Please sign in to comment.