File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
jablib/src/main/java/org/jabref/logic/ai Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3030import dev .langchain4j .store .embedding .filter .Filter ;
3131import dev .langchain4j .store .embedding .filter .comparison .IsEqualTo ;
3232import dev .langchain4j .store .embedding .filter .comparison .IsIn ;
33- import jakarta .annotation .Nullable ;
3433import org .h2 .mvstore .MVStore ;
34+ import org .jspecify .annotations .Nullable ;
3535
3636import static java .util .Comparator .comparingDouble ;
3737import static org .jabref .logic .ai .ingestion .FileEmbeddingsManager .LINK_METADATA_KEY ;
Original file line number Diff line number Diff line change 66
77import org .jabref .logic .util .NotificationService ;
88
9- import jakarta .annotation .Nullable ;
109import org .h2 .mvstore .MVStore ;
1110import org .h2 .mvstore .MVStoreException ;
11+ import org .jspecify .annotations .Nullable ;
1212import org .slf4j .Logger ;
1313import org .slf4j .LoggerFactory ;
1414
@@ -17,8 +17,8 @@ public abstract class MVStoreBase implements AutoCloseable {
1717
1818 protected MVStore mvStore ;
1919
20- public MVStoreBase (Path path , NotificationService dialogService ) {
21- @ Nullable Path mvStorePath = path ;
20+ public MVStoreBase (@ Nullable Path path , NotificationService dialogService ) {
21+ Path mvStorePath = path ;
2222
2323 try {
2424 Files .createDirectories (path .getParent ());
You can’t perform that action at this time.
0 commit comments