diff --git a/runtime/src/main/java/dev/cel/runtime/CelRuntime.java b/runtime/src/main/java/dev/cel/runtime/CelRuntime.java index e6e7167d..01260fb7 100644 --- a/runtime/src/main/java/dev/cel/runtime/CelRuntime.java +++ b/runtime/src/main/java/dev/cel/runtime/CelRuntime.java @@ -57,11 +57,6 @@ public Object eval(Message message) throws CelEvaluationException { return evalInternal(Activation.fromProto(message, getOptions())); } - /** Evaluate a compiled program with an {@code activation} instance. */ - public Object eval(Activation activation) throws CelEvaluationException { - return evalInternal(activation); - } - /** Evaluate a compiled program with a custom variable {@code resolver}. */ public Object eval(CelVariableResolver resolver) throws CelEvaluationException { return evalInternal((name) -> resolver.find(name).orElse(null));