Skip to content

Commit eae09ea

Browse files
committed
minor fixes
1 parent c6a48d1 commit eae09ea

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/frc/robot/subsystems/intake/IntakeConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package frc.robot.subsystems.Intake;
1+
package frc.robot.subsystems.intake;
22

33
public class IntakeConstants {
44
// MOTOR ID'S

src/main/java/frc/robot/subsystems/intake/IntakeIOSparkMax.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class IntakeIOSparkMax implements IntakeIO {
1818
private SparkFlex backMotor;
1919
private RelativeEncoder encoder;
2020

21-
private PIDController pidController = new PIDController(0, 0, 0,);
21+
private PIDController pidController = new PIDController(0, 0, 0);
2222

2323
public IntakeIOSparkMax() {
2424
frontMotor = new SparkFlex(IntakeConstants.FRONT_MOTOR_ID, SparkLowLevel.MotorType.kBrushless);

0 commit comments

Comments
 (0)