Skip to content

Commit 61d313e

Browse files
committed
Fix one more semicolon
1 parent 9ec2862 commit 61d313e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/codefortomorrow/advanced/chapter14/examples/TryWithResources.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package com.codefortomorrow.advanced.chapter14.examples
1+
package com.codefortomorrow.advanced.chapter14.examples;
22
import java.io.*;
33

44
public class TryWithResources {
55

66
public static void main(String[] args) throws IOException {
77
File file = new File("names.txt");
8-
8+
99
try (FileInputStream in = new FileInputStream(file);
1010
FileOutputStream out = new FileOutputStream("names_upper.txt")) {
1111

0 commit comments

Comments
 (0)