Fix JavaDoc tag (#995)

The isParented method had an incorrect javadoc tag for the return value.
This commit is contained in:
Austin Shalit
2018-04-29 23:13:18 -04:00
committed by Peter Johnson
parent 47783842e9
commit fdfea35161

View File

@@ -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;