From fdfea3516106690f9bcf5fc0ea4025652217df24 Mon Sep 17 00:00:00 2001 From: Austin Shalit Date: Sun, 29 Apr 2018 23:13:18 -0400 Subject: [PATCH] Fix JavaDoc tag (#995) The isParented method had an incorrect javadoc tag for the return value. --- .../src/main/java/edu/wpi/first/wpilibj/command/Command.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpilibj/src/main/java/edu/wpi/first/wpilibj/command/Command.java b/wpilibj/src/main/java/edu/wpi/first/wpilibj/command/Command.java index cdcbc9d64a..abb28139f8 100644 --- a/wpilibj/src/main/java/edu/wpi/first/wpilibj/command/Command.java +++ b/wpilibj/src/main/java/edu/wpi/first/wpilibj/command/Command.java @@ -381,7 +381,7 @@ public abstract class Command extends SendableBase implements Sendable { /** * Returns whether the command has a parent. * - * @param True if the command has a parent. + * @return true if the command has a parent. */ synchronized boolean isParented() { return m_parent != null;