Skip to content

Commit

Permalink
Add ''
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Apr 25, 2024
1 parent e82de74 commit 995856d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/jabref/logic/bst/BstVMVisitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@ protected void resolveIdentifier(String name, ParserRuleContext ctx) {
public Integer visitBstFunction(BstParser.BstFunctionContext ctx) {
String name = ctx.getChild(0).getText();
if (bstVMContext.functions().containsKey(name)) {
LOGGER.trace("Function {} found", name);
LOGGER.trace("Function '{}' found", name);
bstVMContext.functions().get(name).execute(this, ctx, selectedBstEntry);
} else {
LOGGER.trace("Function {} not found", name);
LOGGER.trace("Function '{}' not found", name);
visit(ctx.getChild(0));
}

Expand Down

0 comments on commit 995856d

Please sign in to comment.