From: Kevin Zhang Date: Fri, 13 Nov 2015 01:56:15 +0000 (-0800) Subject: Fix style errors X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2015-FRC-Spark;a=commitdiff_plain;h=b72e169c57ba1b924ae6a1de08cddd8cb2ea6246 Fix style errors --- diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/OI.class b/bin/org/usfirst/frc3501/RiceCatRobot/OI.class index 2c6d8ad..1ef82fc 100644 Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/OI.class and b/bin/org/usfirst/frc3501/RiceCatRobot/OI.class differ diff --git a/src/org/usfirst/frc3501/RiceCatRobot/OI.java b/src/org/usfirst/frc3501/RiceCatRobot/OI.java index 8477f98..bb7fbed 100644 --- a/src/org/usfirst/frc3501/RiceCatRobot/OI.java +++ b/src/org/usfirst/frc3501/RiceCatRobot/OI.java @@ -26,5 +26,6 @@ public class OI { toggleCompressor = new JoystickButton(rightJoystick, RobotMap.TOGGLE_COMPRESSOR_PORT); toggleCompressor.whenPressed(new ToggleCompressor()); + } -} \ No newline at end of file +} diff --git a/src/org/usfirst/frc3501/RiceCatRobot/Robot.java b/src/org/usfirst/frc3501/RiceCatRobot/Robot.java index f82f4b2..7e9fabe 100644 --- a/src/org/usfirst/frc3501/RiceCatRobot/Robot.java +++ b/src/org/usfirst/frc3501/RiceCatRobot/Robot.java @@ -66,4 +66,4 @@ public class Robot extends IterativeRobot { arm.fineTuneControl(OI.leftJoystick.getY()); } } -} \ No newline at end of file +} diff --git a/src/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.java b/src/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.java index b935311..6e61e61 100644 --- a/src/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.java +++ b/src/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.java @@ -73,5 +73,4 @@ public class DriveFor extends Command { protected void interrupted() { end(); } - -} \ No newline at end of file +} diff --git a/src/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.java b/src/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.java index e94f859..c082b2f 100644 --- a/src/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.java +++ b/src/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.java @@ -57,5 +57,4 @@ public class MoveArmFor extends Command { protected void interrupted() { end(); } - } diff --git a/src/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.java b/src/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.java index 2ba6b5b..452c569 100644 --- a/src/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.java +++ b/src/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.java @@ -44,5 +44,4 @@ public class Arm extends Subsystem { left.set(0); right.set(0); } - -} \ No newline at end of file +}