From 979afad099066642ffe4af2fe0da4cb3fde9823c Mon Sep 17 00:00:00 2001 From: notaroboticsenthusiast <91231142+notaroboticsenthusiast@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:51:57 -0700 Subject: [PATCH] warn people more aggressively about null vals --Gabe --- src/main/java/frc/robot/subsystems/LimelightManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/frc/robot/subsystems/LimelightManager.java b/src/main/java/frc/robot/subsystems/LimelightManager.java index 6fcd438..bfa2549 100644 --- a/src/main/java/frc/robot/subsystems/LimelightManager.java +++ b/src/main/java/frc/robot/subsystems/LimelightManager.java @@ -31,7 +31,7 @@ public void periodic() { /** * Returns a limelight that has a target. - * @return the limelight that has a target. Null if none have valid targets. + * @return the limelight that has a target. WILL BE NULL if none have valid targets. */ public Limelight getTargetedLimelight() { return cachedLimelight;