Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions common/src/main/java/dev/cel/common/CelOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import com.google.auto.value.AutoValue;
import com.google.errorprone.annotations.CheckReturnValue;
import com.google.errorprone.annotations.Immutable;
import dev.cel.common.annotations.Beta;

/**
* Options to configure how the CEL parser, type-checker, and evaluator behave.
Expand Down Expand Up @@ -434,13 +433,10 @@ public abstract static class Builder {
public abstract Builder enableUnknownTracking(boolean value);

/**
* Enables the usage of {@code CelValue} for the runtime. It is a native value representation of
* CEL that wraps Java native objects, and comes with extended capabilities, such as allowing
* value constructs not understood by CEL (ex: POJOs).
*
* <p>Warning: This option is experimental.
* @deprecated Do not use, this flag will be removed in the future. Use the planner based
* runtime instead, which supports CelValue by default.
*/
@Beta
@Deprecated
public abstract Builder enableCelValue(boolean value);

/**
Expand Down
Loading