File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/usfirst/frc/team69/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public CommandBuilder sequential(Command command) {
6969 * @return This CommandBuilder object
7070 */
7171 public CommandBuilder sequential (Command command , double timeout ) {
72- if (timeout >= 0 ) {
72+ if (timeout >= 0.0 ) {
7373 m_cmdGroup .addSequential (command , timeout );
7474 } else {
7575 m_cmdGroup .addSequential (command );
@@ -109,7 +109,7 @@ public CommandBuilder parallel(Command command) {
109109 * @return This CommandBuilder object
110110 */
111111 public CommandBuilder parallel (Command command , double timeout ) {
112- if (timeout >= 0 ) {
112+ if (timeout >= 0.0 ) {
113113 m_cmdGroup .addParallel (command , timeout );
114114 } else {
115115 m_cmdGroup .addParallel (command );
You can’t perform that action at this time.
0 commit comments