Skip to content

Commit fcceb73

Browse files
authored
fix condition to check if jumpToKey is not blank (#14096)
1 parent 4e7e548 commit fcceb73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jabgui/src/main/java/org/jabref/cli/ArgumentProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public List<UiCommand> processArguments() {
6767
return uiCommands;
6868
}
6969

70-
if (StringUtil.isBlank(guiCli.jumpToKey)) {
70+
if (StringUtil.isNotBlank(guiCli.jumpToKey)) {
7171
uiCommands.add(new UiCommand.JumpToEntryKey(guiCli.jumpToKey));
7272
}
7373

0 commit comments

Comments
 (0)