質問編集履歴

2

文法の修正

2018/05/13 12:49

投稿

Tazusa
Tazusa

スコア41

test CHANGED
File without changes
test CHANGED
@@ -82,9 +82,7 @@
82
82
 
83
83
  Path path = Paths.get("openjdk.txt");
84
84
 
85
- try{
86
-
87
- BufferedReader in = Files.newBufferedReader(path);
85
+ try(BufferedReader in = Files.newBufferedReader(path);){
88
86
 
89
87
  String line;
90
88
 

1

誤字の修正

2018/05/13 12:49

投稿

Tazusa
Tazusa

スコア41

test CHANGED
File without changes
test CHANGED
@@ -80,7 +80,7 @@
80
80
 
81
81
 
82
82
 
83
- Path path = Paths.get("openjdk.text");
83
+ Path path = Paths.get("openjdk.txt");
84
84
 
85
85
  try{
86
86