Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 566350964
  • Loading branch information
cushon authored and copybara-github committed Sep 18, 2023
1 parent 0a1d6dd commit d39039e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions runtime/src/main/java/dev/cel/runtime/UnknownContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@
@Immutable
public class UnknownContext {
private final ImmutableList<CelAttributePattern> unresolvedAttributes;

// GlobalResolver implementation must be Immutable if used in this class.
@SuppressWarnings({"ThreadSafe", "Immutable"})
@SuppressWarnings("Immutable")
private final GlobalResolver variableResolver;

// Clients must resolve attributes to Immutable types.
@SuppressWarnings({"ThreadSafe", "Immutable"})
@SuppressWarnings("Immutable")
private final ImmutableMap<CelAttribute, Object> resolvedAttributes;

private UnknownContext(
Expand Down

0 comments on commit d39039e

Please sign in to comment.