Skip to content

Commit 4d78d28

Browse files
committed
Removed unnecessary semicolon
1 parent 2f8975f commit 4d78d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/medallia/word2vec/Word2VecModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static Word2VecModel fromBinFile(File file)
9494
public static Word2VecModel fromBinFile(File file, ByteOrder byteOrder)
9595
throws IOException {
9696

97-
try (FileInputStream fis = new FileInputStream(file);) {
97+
try (FileInputStream fis = new FileInputStream(file)) {
9898
final FileChannel channel = fis.getChannel();
9999
final long oneGB = 1024 * 1024 * 1024;
100100
MappedByteBuffer buffer =

0 commit comments

Comments
 (0)