Skip to content

Commit d56008b

Browse files
committed
refactor: move CanDeviceId to types folder in lib
1 parent a496052 commit d56008b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/main/java/org/frc6423/lib/drivers/CanDeviceId.java renamed to src/main/java/org/frc6423/lib/types/CanDeviceId.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.lib.drivers;
7+
package org.frc6423.lib.types;
88

99
public class CanDeviceId {
1010
private final String busName;

src/main/java/org/frc6423/robot/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88

99
import static edu.wpi.first.units.Units.Seconds;
1010

11+
import org.frc6423.lib.types.CanDeviceId;
12+
1113
import com.ctre.phoenix6.CANBus;
1214
import edu.wpi.first.units.measure.Time;
13-
import org.frc6423.lib.drivers.CanDeviceId;
1415

1516
/**
1617
* Stores global immutable values called "constants"

0 commit comments

Comments
 (0)