Skip to content

Commit deea919

Browse files
committed
Fix Semicolon
1 parent 0225037 commit deea919

File tree

1 file changed

+2
-2
lines changed
  • src/com/codefortomorrow/advanced/chapter14/examples

1 file changed

+2
-2
lines changed

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

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

44
public class FileIO {
@@ -7,7 +7,7 @@ public static void main(String[] args) throws IOException {
77
FileInputStream in = null;
88
FileOutputStream out = null;
99
File file = new File("names.txt");
10-
10+
1111
try {
1212
in = new FileInputStream(file);
1313
out = new FileOutputStream("names_upper.txt");

0 commit comments

Comments
 (0)