From 04e75736b46120c689a6e64adf866507f85ea91e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 19:46:27 +0000 Subject: [PATCH] Formatting fixes --- developerRobot/src/main/java/frc/robot/Robot.java | 6 +----- developerRobot/src/main/native/cpp/Robot.cpp | 7 +------ 2 files changed, 2 insertions(+), 11 deletions(-) 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