Skip to content

Commit 2f91d11

Browse files
committed
GP-28 fix imports
1 parent abccaf2 commit 2f91d11

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

3-0-java-core/src/main/java/com/bobocode/file_reader/FileReaders.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.bobocode.file_reader;
22

3-
import com.bobocode.util.ExerciseNotCompletedException;
4-
53
import java.io.IOException;
64
import java.net.URISyntaxException;
75
import java.net.URL;
@@ -37,7 +35,7 @@ private static Path createPathFromFileName(String fileName) {
3735
try {
3836
return Paths.get(fileUrl.toURI());
3937
} catch (URISyntaxException e) {
40-
throw new FileReaderException("Invalid file URL",e);
38+
throw new FileReaderException("Invalid file URL", e);
4139
}
4240
}
4341

0 commit comments

Comments
 (0)