Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hrishikesh-kadam committed Jun 25, 2018
1 parent 48ac791 commit 267e0e3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,12 @@ public String rawData(String relativePath) throws NullPointerException {
String line;

while ((line = br.readLine()) != null) {
sb.append(line); //.append('\n');
sb.append(line).append('\n');
}

if (sb.length() > 0)
sb.deleteCharAt(sb.length() - 1);

return sb.toString();
} catch (URISyntaxException | ZipException | IOException e) {
e.printStackTrace();
Expand Down

0 comments on commit 267e0e3

Please sign in to comment.