Skip to content

Commit c98b522

Browse files
eamonnmcmanuscopybara-github
authored andcommitted
Make UnspecifiedType abstract
This should have no effect on client code, but means we can internally make it an error for an `@AutoValue` class not to be abstract. (Usually an `@AutoValue` class has abstract property methods, which means it is abstract anyway.) PiperOrigin-RevId: 751091685
1 parent 5c00b16 commit c98b522

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/dev/cel/common/types/UnspecifiedType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
@CheckReturnValue
3333
@Immutable
3434
@Internal
35-
public class UnspecifiedType extends CelType {
35+
public abstract class UnspecifiedType extends CelType {
3636

3737
@Override
3838
public CelKind kind() {

0 commit comments

Comments
 (0)