Make the build JDK 18+ compatible (#304)

This commit is contained in:
Rick Ossendrijver
2022-10-23 18:15:38 +02:00
committed by GitHub
parent 0118cc6c10
commit e00aba12c3
39 changed files with 111 additions and 3 deletions

View File

@@ -61,9 +61,10 @@ public final class Refaster extends BugChecker implements CompilationUnitTreeMat
private static final long serialVersionUID = 1L;
@SuppressWarnings("serial" /* Concrete instance will be `Serializable`. */)
private final CodeTransformer codeTransformer;
/** Instantiates the default {@link Refaster}. */
/** Instantiates a default {@link Refaster} instance. */
public Refaster() {
this(ErrorProneFlags.empty());
}