Skip to content

Commit db0f264

Browse files
committed
java fmt
Signed-off-by: Jade Turner <[email protected]>
1 parent 1b79e34 commit db0f264

File tree

1 file changed

+6
-6
lines changed
  • photon-targeting/src/main/java/org/photonvision/common/hardware

1 file changed

+6
-6
lines changed

photon-targeting/src/main/java/org/photonvision/common/hardware/Platform.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ public static boolean isSupported() {
116116
}
117117

118118
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();
121121
}
122122

123123
//////////////////////////////////////////////////////
@@ -131,16 +131,16 @@ public static boolean isAthena() {
131131
public static Platform getCurrentPlatform() {
132132
String OS_NAME;
133133
if (Platform.OS_NAME != null) {
134-
OS_NAME = Platform.OS_NAME;
134+
OS_NAME = Platform.OS_NAME;
135135
} else {
136-
OS_NAME = System.getProperty("os.name");
136+
OS_NAME = System.getProperty("os.name");
137137
}
138138

139139
String OS_ARCH;
140140
if (Platform.OS_ARCH != null) {
141-
OS_ARCH = Platform.OS_ARCH;
141+
OS_ARCH = Platform.OS_ARCH;
142142
} else {
143-
OS_ARCH = System.getProperty("os.arch");
143+
OS_ARCH = System.getProperty("os.arch");
144144
}
145145

146146
if (OS_NAME.startsWith("Windows")) {

0 commit comments

Comments
 (0)