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 checker/src/main/java/dev/cel/checker/Env.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,7 @@
@Internal
public class Env {

/**
* The top-most scope in the environment, for use with {@link #getDeclGroup(int)}.
*
* <p>Note: Used by legacy type-checker users (mirrored sources) *
*/
/** The top-most scope in the environment, for use with {@link #getDeclGroup(int)}. */
public static final int ROOT_SCOPE = 0;

/** An ident declaration to represent an error. */
Expand Down Expand Up @@ -399,7 +395,7 @@ public Env add(String name, Type type) {
}

/**
* Note: Used by legacy type-checker users (mirrored sources)
* Note: Used by legacy type-checker users
*
* @deprecated Use {@link #tryLookupCelFunction} instead.
*/
Expand Down Expand Up @@ -530,7 +526,7 @@ public CelFunctionDecl lookupFunction(
}

/**
* Note: Used by legacy type-checker users (mirrored sources)
* Note: Used by legacy type-checker users
*
* @deprecated Use {@link #reportError(long, int, String, Object...) instead.}
*/
Expand Down
Loading