mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
Removed extra newlines from beginning of Java classes (#859)
The content of this PR was generated by styleguide#111.
This commit is contained in:
committed by
Peter Johnson
parent
8346caed9c
commit
eedb8910c3
@@ -14,7 +14,6 @@ import edu.wpi.first.wpilibj.Timer;
|
||||
* Simulates an encoder for testing purposes.
|
||||
*/
|
||||
public class FakeCounterSource {
|
||||
|
||||
private Thread m_task;
|
||||
private int m_count;
|
||||
private int m_milliSec;
|
||||
@@ -25,7 +24,6 @@ public class FakeCounterSource {
|
||||
* Thread object that allows emulation of an encoder.
|
||||
*/
|
||||
private class EncoderThread extends Thread {
|
||||
|
||||
FakeCounterSource m_encoder;
|
||||
|
||||
EncoderThread(FakeCounterSource encode) {
|
||||
|
||||
@@ -14,7 +14,6 @@ import edu.wpi.first.wpilibj.Timer;
|
||||
* Emulates a quadrature encoder.
|
||||
*/
|
||||
public class FakeEncoderSource {
|
||||
|
||||
private Thread m_task;
|
||||
private int m_count;
|
||||
private int m_milliSec;
|
||||
@@ -27,7 +26,6 @@ public class FakeEncoderSource {
|
||||
* Thread object that allows emulation of a quadrature encoder.
|
||||
*/
|
||||
private class QuadEncoderThread extends Thread {
|
||||
|
||||
FakeEncoderSource m_encoder;
|
||||
|
||||
QuadEncoderThread(FakeEncoderSource encode) {
|
||||
|
||||
Reference in New Issue
Block a user