SCRIPT: 'edu.wpi.first' replacements

This commit is contained in:
PJ Reiniger
2025-11-07 20:00:38 -05:00
committed by Peter Johnson
parent 013a238994
commit 824f36f63a
11 changed files with 11 additions and 11 deletions

View File

@@ -600,7 +600,7 @@ public final class DriverStation {
String loc = stackTrace[i].toString();
traceString.append("\tat ").append(loc).append('\n');
// get first user function
if (!haveLoc && !loc.startsWith("edu.wpi.first")) {
if (!haveLoc && !loc.startsWith("org.wpilib")) {
locString = loc;
haveLoc = true;
}