Skip to content

Commit

Permalink
Rename second thenWait to andThenWaitTime
Browse files Browse the repository at this point in the history
  • Loading branch information
katzuv committed Oct 14, 2024
1 parent 944bae9 commit 5e70e9a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ public SequentialCommandGroup andThenWaitSeconds(double seconds) {
* @param time the timeout duration
* @return the command with the timeout to await
*/
public SequentialCommandGroup thenWait(Time time) {
return thenWait(time.in(Seconds));
public SequentialCommandGroup andThenWaitTime(Time time) {
return andThenWaitSeconds(time.in(Seconds));
}

/**
Expand Down

0 comments on commit 5e70e9a

Please sign in to comment.