File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
photon-targeting/src/main/java/org/photonvision/common/hardware Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -116,8 +116,8 @@ public static boolean isSupported() {
116
116
}
117
117
118
118
public static boolean isAthena () {
119
- File runRobotFile = new File ("/usr/local/frc/bin/frcRunRobot.sh" );
120
- return runRobotFile .exists ();
119
+ File runRobotFile = new File ("/usr/local/frc/bin/frcRunRobot.sh" );
120
+ return runRobotFile .exists ();
121
121
}
122
122
123
123
//////////////////////////////////////////////////////
@@ -131,16 +131,16 @@ public static boolean isAthena() {
131
131
public static Platform getCurrentPlatform () {
132
132
String OS_NAME ;
133
133
if (Platform .OS_NAME != null ) {
134
- OS_NAME = Platform .OS_NAME ;
134
+ OS_NAME = Platform .OS_NAME ;
135
135
} else {
136
- OS_NAME = System .getProperty ("os.name" );
136
+ OS_NAME = System .getProperty ("os.name" );
137
137
}
138
138
139
139
String OS_ARCH ;
140
140
if (Platform .OS_ARCH != null ) {
141
- OS_ARCH = Platform .OS_ARCH ;
141
+ OS_ARCH = Platform .OS_ARCH ;
142
142
} else {
143
- OS_ARCH = System .getProperty ("os.arch" );
143
+ OS_ARCH = System .getProperty ("os.arch" );
144
144
}
145
145
146
146
if (OS_NAME .startsWith ("Windows" )) {
You can’t perform that action at this time.
0 commit comments