From 151a26a1e28101aa38199805eb358fdea2e79639 Mon Sep 17 00:00:00 2001 From: E-Crafting <26528208+E-Crafting@users.noreply.github.com> Date: Tue, 25 Sep 2018 06:32:42 -0700 Subject: [PATCH] Fixed Typo in interface function --- .../hazenrobotics/commoncode/interfaces/OpModeInterface.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonCode/src/main/java/com/hazenrobotics/commoncode/interfaces/OpModeInterface.java b/CommonCode/src/main/java/com/hazenrobotics/commoncode/interfaces/OpModeInterface.java index 6398430..be0e3f7 100644 --- a/CommonCode/src/main/java/com/hazenrobotics/commoncode/interfaces/OpModeInterface.java +++ b/CommonCode/src/main/java/com/hazenrobotics/commoncode/interfaces/OpModeInterface.java @@ -9,5 +9,5 @@ public interface OpModeInterface extends HardwareInterface, GamepadInterface, Id * longer active, any loops currently calling this function should break and stop. * @return True if the OpMode is currently active, False if the OpMode needs to or is stopped. */ - boolean opModeisActive(); + boolean opModeIsActive(); } \ No newline at end of file