Skip to content

Commit

Permalink
Add todo in code
Browse files Browse the repository at this point in the history
  • Loading branch information
arkanovicz committed Jul 13, 2018
1 parent fd170d3 commit 50c249c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/republicate/stillness/Stillness.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ protected String getSource(String name) throws Exception {
}
String buffer="";
String line;
BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
BufferedReader reader = new BufferedReader(new InputStreamReader(stream)); // CB TODO - encoding
while((line=reader.readLine())!= null) {
buffer +=line;
}
Expand Down

0 comments on commit 50c249c

Please sign in to comment.