.
All checks were successful
Build and Deploy artifact / build (push) Successful in 1m21s

This commit is contained in:
kento2 2026-08-09 21:12:47 +02:00
parent 23f7d1a550
commit 2c058fc84c
2 changed files with 3 additions and 3 deletions

View file

@ -49,8 +49,8 @@ public class NodeTreeWalker<T> {
}
if (!literal.literals().isEmpty()) {
var isRequired = literal.executor() == null;
return new WalkResult.LiteralExpected<>(ctxBuilder.build(), literal, isRequired);
var isOptional = literal.executor() != null;
return new WalkResult.LiteralExpected<>(ctxBuilder.build(), literal, isOptional);
}
return new WalkResult.Complete<>(ctxBuilder.build(), literal);