mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Fixes non public static methods in RobotController. (#852)
This commit is contained in:
committed by
Peter Johnson
parent
166d9e01bf
commit
691741cfcb
@@ -27,7 +27,7 @@ public final class RobotController {
|
||||
* @return FPGA Version number.
|
||||
*/
|
||||
@SuppressWarnings("AbbreviationAsWordInName")
|
||||
int getFPGAVersion() {
|
||||
public static int getFPGAVersion() {
|
||||
return HALUtil.getFPGAVersion();
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@ public final class RobotController {
|
||||
* @return FPGA Revision number.
|
||||
*/
|
||||
@SuppressWarnings("AbbreviationAsWordInName")
|
||||
long getFPGARevision() {
|
||||
public static long getFPGARevision() {
|
||||
return (long) HALUtil.getFPGARevision();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user