Fix style errors
authorKevin Zhang <icestormf1@gmail.com>
Fri, 13 Nov 2015 01:56:15 +0000 (17:56 -0800)
committerKevin Zhang <icestormf1@gmail.com>
Fri, 13 Nov 2015 01:56:15 +0000 (17:56 -0800)
bin/org/usfirst/frc3501/RiceCatRobot/OI.class
src/org/usfirst/frc3501/RiceCatRobot/OI.java
src/org/usfirst/frc3501/RiceCatRobot/Robot.java
src/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.java
src/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.java
src/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.java

index 2c6d8ad11bf0c594ceb1247e305340d7b98353ba..1ef82fc2801fd5bdf85022feba20ed6cef6148e7 100644 (file)
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/OI.class and b/bin/org/usfirst/frc3501/RiceCatRobot/OI.class differ
index 8477f98f21f6f7b8c9881a82422190d2ae60760e..bb7fbed113d4f7b207035607e3abe761b8eec4d9 100644 (file)
@@ -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
+}
index f82f4b2d360bf7763d84e62db54a23d8accce941..7e9fabeccff07dc21046aafc3c3518a8a1885c69 100644 (file)
@@ -66,4 +66,4 @@ public class Robot extends IterativeRobot {
             arm.fineTuneControl(OI.leftJoystick.getY());
         }
     }
-}
\ No newline at end of file
+}
index b9353114e9adcb434538d54bdad44b2c53cbafe5..6e61e616bd0bf16d4b09942224edef3c73908be4 100644 (file)
@@ -73,5 +73,4 @@ public class DriveFor extends Command {
     protected void interrupted() {
         end();
     }
-
-}
\ No newline at end of file
+}
index e94f859daed14fa52c341307dfd230ac1cbcba50..c082b2f5ae56cb285ec04f18e74b5f21f4beab7b 100644 (file)
@@ -57,5 +57,4 @@ public class MoveArmFor extends Command {
     protected void interrupted() {
         end();
     }
-
 }
index 2ba6b5b9f81a632da456cd8833503c0ee0f26492..452c5691b49359564b7d960c7d727c6954d4b7a7 100644 (file)
@@ -44,5 +44,4 @@ public class Arm extends Subsystem {
         left.set(0);
         right.set(0);
     }
-
-}
\ No newline at end of file
+}