diff --git a/developerRobot/src/main/java/frc/robot/Robot.java b/developerRobot/src/main/java/frc/robot/Robot.java index 2e7ec0b4e80..6cf3f4738d7 100644 --- a/developerRobot/src/main/java/frc/robot/Robot.java +++ b/developerRobot/src/main/java/frc/robot/Robot.java @@ -11,11 +11,7 @@ public class Robot extends TimedRobot { * This function is run when the robot is first started up and should be used for any * initialization code. */ - public Robot() { - - - - } + public Robot() {} /** This function is run once each time the robot enters autonomous mode. */ @Override diff --git a/developerRobot/src/main/native/cpp/Robot.cpp b/developerRobot/src/main/native/cpp/Robot.cpp index 4a36587b2ba..83bd9db8d8f 100644 --- a/developerRobot/src/main/native/cpp/Robot.cpp +++ b/developerRobot/src/main/native/cpp/Robot.cpp @@ -4,7 +4,6 @@ #include - #include class Robot : public frc::TimedRobot { @@ -13,11 +12,7 @@ class Robot : public frc::TimedRobot { * This function is run when the robot is first started up and should be * used for any initialization code. */ - Robot() { - - - - } + Robot() {} /** * This function is run once each time the robot enters autonomous mode