mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Remove extra newlines after open curly braces (NFC) (#3471)
This commit is contained in:
@@ -97,7 +97,6 @@ public abstract class AbstractInterruptTest extends AbstractComsSetup {
|
||||
|
||||
@Test(timeout = 2000)
|
||||
public void testMultipleInterruptsTriggering() {
|
||||
|
||||
AtomicBoolean hasFired = new AtomicBoolean(false);
|
||||
AtomicInteger counter = new AtomicInteger(0);
|
||||
|
||||
@@ -130,7 +129,6 @@ public abstract class AbstractInterruptTest extends AbstractComsSetup {
|
||||
|
||||
@Test(timeout = (long) (synchronousTimeout * 1e3))
|
||||
public void testSynchronousInterruptsTriggering() {
|
||||
|
||||
try (SynchronousInterrupt interrupt = new SynchronousInterrupt(getSource())) {
|
||||
final double synchronousDelay = synchronousTimeout / 2.0;
|
||||
final Runnable runnable =
|
||||
@@ -176,7 +174,6 @@ public abstract class AbstractInterruptTest extends AbstractComsSetup {
|
||||
@Test(timeout = (long) (synchronousTimeout * 1e3))
|
||||
public void testSynchronousInterruptsWaitResultRisingEdge() {
|
||||
try (SynchronousInterrupt interrupt = new SynchronousInterrupt(getSource())) {
|
||||
|
||||
final double synchronousDelay = synchronousTimeout / 2.0;
|
||||
final Runnable runnable =
|
||||
() -> {
|
||||
|
||||
@@ -157,7 +157,6 @@ public final class TestBench {
|
||||
* @return a freshly allocated Servo's and a freshly allocated Gyroscope
|
||||
*/
|
||||
public static TiltPanCameraFixture getTiltPanCam() {
|
||||
|
||||
return new TiltPanCameraFixture() {
|
||||
@Override
|
||||
protected AnalogGyro giveGyro() {
|
||||
|
||||
Reference in New Issue
Block a user