Skip to content

Commit

Permalink
replace deprecated method (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo authored Apr 12, 2020
1 parent c02f7d6 commit 9a5b0f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void processResource( String resource, InputStream is, final List<Relocat
serviceEntries.put( resource, out );
}

final String content = IOUtils.toString( is );
final String content = IOUtils.toString( is, StandardCharsets.UTF_8 );
StringReader reader = new StringReader( content );
BufferedReader lineReader = new BufferedReader( reader );
String line;
Expand Down

0 comments on commit 9a5b0f8

Please sign in to comment.