We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
thenWait
andThenWaitTime
1 parent 944bae9 commit 5e70e9aCopy full SHA for 5e70e9a
wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/Command.java
@@ -247,8 +247,8 @@ public SequentialCommandGroup andThenWaitSeconds(double seconds) {
247
* @param time the timeout duration
248
* @return the command with the timeout to await
249
*/
250
- public SequentialCommandGroup thenWait(Time time) {
251
- return thenWait(time.in(Seconds));
+ public SequentialCommandGroup andThenWaitTime(Time time) {
+ return andThenWaitSeconds(time.in(Seconds));
252
}
253
254
/**
0 commit comments