Closed
Description
opened on Oct 1, 2024
Error-prone 2.32.0:
public record BigQueryTransactionHandle(UUID uuid)
implements ConnectorTransactionHandle
{
public BigQueryTransactionHandle()
{
this(UUID.randomUUID());
}
public BigQueryTransactionHandle
{
requireNonNull(uuid, "uuid is null");
}
}
And violation:
[ERROR] BigQueryTransactionHandle.java:[25,12] [MissingOverride] <init> is an explicitly declared accessor method for a record component; expected @Override
[ERROR] (see https://errorprone.info/bugpattern/MissingOverride)
[ERROR] Did you mean '@Override public BigQueryTransactionHandle()'?
Related to be99217
cc @cushon
Metadata
Assignees
Labels
No labels
Activity