We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf41e4d commit 4e710c8Copy full SHA for 4e710c8
src/test/java/org/jabref/logic/importer/DatabaseFileLookupTest.java
@@ -1,6 +1,11 @@
1
package org.jabref.logic.importer;
2
3
-import java.util.*;
+import java.util.Collections;
4
+import java.util.Collection;
5
+import java.util.ArrayList;
6
+import java.util.Optional;
7
+import java.util.Arrays;
8
+import java.util.List;
9
10
import javafx.collections.FXCollections;
11
import javafx.collections.ObservableList;
@@ -35,7 +40,7 @@ class DatabaseFileLookupTest {
35
40
private Path tempDir;
36
41
private Path txtFileDir;
37
42
private FilePreferences filePreferences;
38
- private static DatabaseFileLookup fileLookup;
43
+ private DatabaseFileLookup fileLookup;
39
44
45
/**
46
* Sets up the test environment before each test case.
0 commit comments