Fixes some methods in RobotController not being static. (#831)

This commit is contained in:
Thad House
2017-12-11 11:48:54 -08:00
committed by Peter Johnson
parent 7729dd972f
commit 8744511f1d

View File

@@ -76,7 +76,7 @@ public final class RobotController {
*
* @return True if the FPGA outputs are enabled.
*/
public boolean isSysActive() {
public static boolean isSysActive() {
return HAL.getSystemActive();
}
@@ -85,7 +85,7 @@ public final class RobotController {
*
* @return True if the system is browned out
*/
public boolean isBrownedOut() {
public static boolean isBrownedOut() {
return HAL.getBrownedOut();
}