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 ee4b80f commit 7cd0d73Copy full SHA for 7cd0d73
runtime/src/main/java/dev/cel/runtime/CelRuntime.java
@@ -57,11 +57,6 @@ public Object eval(Message message) throws CelEvaluationException {
57
return evalInternal(Activation.fromProto(message, getOptions()));
58
}
59
60
- /** Evaluate a compiled program with an {@code activation} instance. */
61
- public Object eval(Activation activation) throws CelEvaluationException {
62
- return evalInternal(activation);
63
- }
64
-
65
/** Evaluate a compiled program with a custom variable {@code resolver}. */
66
public Object eval(CelVariableResolver resolver) throws CelEvaluationException {
67
return evalInternal((name) -> resolver.find(name).orElse(null));
0 commit comments