SCRIPT: Spotless Apply

This commit is contained in:
PJ Reiniger
2025-11-07 19:57:21 -05:00
committed by Peter Johnson
parent c89910b7c6
commit c48b722dac
650 changed files with 1529 additions and 1545 deletions

View File

@@ -6,9 +6,9 @@ package org.wpilib.epilogue.logging;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.wpilib.epilogue.Logged;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.wpilib.epilogue.Logged;
class ClassSpecificLoggerTest {
@Logged

View File

@@ -4,9 +4,9 @@
package org.wpilib.epilogue.logging;
import java.nio.ByteBuffer;
import org.wpilib.util.struct.Struct;
import org.wpilib.util.struct.StructSerializable;
import java.nio.ByteBuffer;
public record CustomStruct(int x) implements StructSerializable {
public static final Serializer struct = new Serializer();

View File

@@ -8,9 +8,9 @@ import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertSame;
import org.wpilib.math.geometry.Rotation2d;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.wpilib.math.geometry.Rotation2d;
class LazyBackendTest {
@Test

View File

@@ -4,13 +4,13 @@
package org.wpilib.epilogue.logging;
import org.wpilib.util.protobuf.Protobuf;
import org.wpilib.util.struct.Struct;
import org.wpilib.util.struct.StructBuffer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.wpilib.util.protobuf.Protobuf;
import org.wpilib.util.struct.Struct;
import org.wpilib.util.struct.StructBuffer;
import us.hebi.quickbuf.ProtoMessage;
@SuppressWarnings("PMD.TestClassWithoutTestCases") // This is not a test class!