mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
Change SystemCore to Systemcore (#8359)
This commit is contained in:
@@ -14,8 +14,8 @@ public enum RuntimeType {
|
||||
kRoboRIO2(HALUtil.RUNTIME_ROBORIO2),
|
||||
/** Simulation runtime. */
|
||||
kSimulation(HALUtil.RUNTIME_SIMULATION),
|
||||
/** SystemCore. */
|
||||
kSystemCore(HALUtil.RUNTIME_SYSTEMCORE);
|
||||
/** Systemcore. */
|
||||
kSystemcore(HALUtil.RUNTIME_SYSTEMCORE);
|
||||
|
||||
/** RuntimeType value. */
|
||||
public final int value;
|
||||
@@ -34,7 +34,7 @@ public enum RuntimeType {
|
||||
return switch (type) {
|
||||
case HALUtil.RUNTIME_ROBORIO -> RuntimeType.kRoboRIO;
|
||||
case HALUtil.RUNTIME_ROBORIO2 -> RuntimeType.kRoboRIO2;
|
||||
case HALUtil.RUNTIME_SYSTEMCORE -> RuntimeType.kSystemCore;
|
||||
case HALUtil.RUNTIME_SYSTEMCORE -> RuntimeType.kSystemcore;
|
||||
default -> RuntimeType.kSimulation;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user