mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[build] Java 25 support (#8775)
Commands v3 had a few changes due to the upgrade: - Java 24 removed the Pinned: MONITOR IllegalStateException when yielding in a synchronized block, so we no longer need to special case for it - Lambda method name generation was tweaked, requiring tests to be updated - Bazel java_rules needed to be bumped to support Java 25 Closes #8425
This commit is contained in:
@@ -37,7 +37,7 @@ import org.wpilib.epilogue.Logged;
|
||||
import org.wpilib.epilogue.NotLogged;
|
||||
|
||||
@SupportedAnnotationTypes({"org.wpilib.epilogue.CustomLoggerFor", "org.wpilib.epilogue.Logged"})
|
||||
@SupportedSourceVersion(SourceVersion.RELEASE_21)
|
||||
@SupportedSourceVersion(SourceVersion.RELEASE_25)
|
||||
public class AnnotationProcessor extends AbstractProcessor {
|
||||
private static final String kCustomLoggerFqn = "org.wpilib.epilogue.CustomLoggerFor";
|
||||
private static final String kClassSpecificLoggerFqn =
|
||||
|
||||
Reference in New Issue
Block a user