Skip to content

Commit 109f8b4

Browse files
authored
한글화
1 parent 0c246d2 commit 109f8b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/effectivejava/chapter9/item59/Curl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.io.InputStream;
55
import java.net.URL;
66

7-
// Printing the contents of a URL with transferTo, added in Java 9 (Page 269)
7+
// 코드 59-2 transferTo 메서드를 이용해 URL의 내용 가져오기 - 자바 9부터 가능하다. (353쪽)
88
public class Curl {
99
public static void main(String[] args) throws IOException {
1010
try (InputStream in = new URL(args[0]).openStream()) {

0 commit comments

Comments
 (0)