[build] Upgrade Gradle wrapper and plugins (#8767)

This fixes builds on JDK 26 for me.
This commit is contained in:
Tyler Veness
2026-04-12 22:03:50 -07:00
committed by GitHub
parent 476b9641c1
commit 7af3ac579b
34 changed files with 36 additions and 39 deletions

View File

@@ -7,7 +7,6 @@ package org.wpilib.math.autodiff;
import java.util.OptionalInt;
/** Represents a sequence of elements in an iterable object. */
@SuppressWarnings("PMD.UnusedFormalParameter")
public class Slice {
/** Type tag used to designate an omitted argument of the slice. */
public static class None {

View File

@@ -54,7 +54,7 @@ public class Variable implements AutoCloseable {
* @param handleTypeTag Handle type tag.
* @param handle Variable handle.
*/
@SuppressWarnings({"PMD.UnusedFormalParameter", "this-escape"})
@SuppressWarnings("this-escape")
public Variable(Handle handleTypeTag, long handle) {
m_handle = handle;
VariablePool.register(this);

View File

@@ -68,7 +68,6 @@ public class PoseEstimator<T> {
* in meters, y position in meters, and heading in radians). Increase these numbers to trust
* the vision pose measurement less.
*/
@SuppressWarnings("PMD.UnusedFormalParameter")
public PoseEstimator(
Kinematics<T, ?, ?> kinematics,
Odometry<T> odometry,

View File

@@ -75,7 +75,6 @@ public class PoseEstimator3d<T> {
* in meters, y position in meters, z position in meters, and angle in radians). Increase
* these numbers to trust the vision pose measurement less.
*/
@SuppressWarnings("PMD.UnusedFormalParameter")
public PoseEstimator3d(
Kinematics<T, ?, ?> kinematics,
Odometry3d<T> odometry,