Remove RedundantModifiers (#578)

This commit is contained in:
Austin Shalit
2017-10-17 21:47:55 -07:00
committed by Peter Johnson
parent 0291a95f68
commit 2fc60680f4
24 changed files with 30 additions and 32 deletions

View File

@@ -33,7 +33,7 @@ public class DriverStation implements RobotState.Interface {
public float[] m_axes;
public short m_count;
public HALJoystickAxes(int count) {
HALJoystickAxes(int count) {
m_axes = new float[count];
}
}
@@ -42,7 +42,7 @@ public class DriverStation implements RobotState.Interface {
public short[] m_povs;
public short m_count;
public HALJoystickPOVs(int count) {
HALJoystickPOVs(int count) {
m_povs = new short[count];
}
}