Change SystemCore to Systemcore (#8359)

This commit is contained in:
Ryan Blue
2025-11-10 21:18:58 -05:00
committed by GitHub
parent e5f8aa2cf4
commit 418b3814bc
15 changed files with 30 additions and 30 deletions

View File

@@ -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;
};
}