Skip to content

Commit

Permalink
テストケースを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe committed May 26, 2018
1 parent e65e89b commit 13f8b80
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,13 @@

public class DiffCounterResultUtil {

public static String encode = System.getProperty("file.encoding");

private DiffCounterResultUtil() {}

public static String load(URL url) {
BufferedReader reader = null;
try {
reader = new BufferedReader(new InputStreamReader(
new FileInputStream(new File(url.getFile())), encode));
new FileInputStream(new File(url.getFile())), "UTF-8"));
} catch (FileNotFoundException ex) {
ex.printStackTrace();
return null;
Expand Down

0 comments on commit 13f8b80

Please sign in to comment.