Removed extra newlines from beginning of Java classes (#859)

The content of this PR was generated by styleguide#111.
This commit is contained in:
Tyler Veness
2018-01-02 09:17:46 -08:00
committed by Peter Johnson
parent 8346caed9c
commit eedb8910c3
113 changed files with 0 additions and 122 deletions

View File

@@ -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) {

View File

@@ -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) {