From c0bce22a8b94706916ecb84771251636f8d5bd03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89amonn=20McManus?= Date: Thu, 24 Apr 2025 10:59:40 -0700 Subject: [PATCH] Rewrite tests so AutoValue classes are always abstract, even if they have no properties. PiperOrigin-RevId: 751056240 --- common/src/main/java/dev/cel/common/types/UnspecifiedType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/dev/cel/common/types/UnspecifiedType.java b/common/src/main/java/dev/cel/common/types/UnspecifiedType.java index 0daf90865..2c1df422e 100644 --- a/common/src/main/java/dev/cel/common/types/UnspecifiedType.java +++ b/common/src/main/java/dev/cel/common/types/UnspecifiedType.java @@ -32,7 +32,7 @@ @CheckReturnValue @Immutable @Internal -public class UnspecifiedType extends CelType { +public abstract class UnspecifiedType extends CelType { @Override public CelKind kind() {