From 8c6e5ec1b23c0f542033330de74d0498e7fba9c3 Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Fri, 22 Jul 2016 15:36:16 -0400 Subject: [PATCH] Autoformatted --- src/org/usfirst/frc/team2059/robot/OI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/usfirst/frc/team2059/robot/OI.java b/src/org/usfirst/frc/team2059/robot/OI.java index 75f0cbd..eb6d946 100644 --- a/src/org/usfirst/frc/team2059/robot/OI.java +++ b/src/org/usfirst/frc/team2059/robot/OI.java @@ -16,7 +16,7 @@ public class OI { joysticks[0] = new Joystick(1); joysticks[1] = new Joystick(2); // Create buttons - for(int i=0;i<12;i++) { + for (int i = 0; i < 12; i++) { joystickButtons[0][i] = new JoystickButton(joysticks[0], i + 1); joystickButtons[1][i] = new JoystickButton(joysticks[1], i + 1); }