mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +00:00
Open scope of several data fields to be able to extend CommandGroup
Change-Id: I81ac59dd45aa50ed3d8dc4fdd1d5807899af546b
This commit is contained in:
@@ -34,11 +34,11 @@ import java.util.Vector;
|
||||
public class CommandGroup extends Command {
|
||||
|
||||
/** The commands in this group (stored in entries) */
|
||||
private Vector m_commands = new Vector();
|
||||
Vector m_commands = new Vector();
|
||||
/** The active children in this group (stored in entries) */
|
||||
Vector m_children = new Vector();
|
||||
/** The current command, -1 signifies that none have been run */
|
||||
private int m_currentCommandIndex = -1;
|
||||
int m_currentCommandIndex = -1;
|
||||
|
||||
/**
|
||||
* Creates a new {@link CommandGroup CommandGroup}.
|
||||
|
||||
Reference in New Issue
Block a user