We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b96c447 commit 23a3ee1Copy full SHA for 23a3ee1
lib/utils/FileUtil.java
@@ -30,6 +30,7 @@ public static String getFileContent(String filePath) throws IOException {
30
sb.append(System.lineSeparator());
31
line = br.readLine();
32
}
33
+ br.close();
34
return sb.toString();
35
36
lib/utils/RandomUtil.java
@@ -1,7 +1,6 @@
1
package javaToolkit.lib.utils;
2
3
import java.util.ArrayList;
4
-import java.util.Arrays;
5
import java.util.List;
6
import java.util.Random;
7
0 commit comments