Skip to content

Commit

Permalink
Fix breaking issue in DefaultBotBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
rowan-mcalpin authored Sep 24, 2024
1 parent eb0490d commit 8bb45b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ open class DefaultBotBuilder(private val meepMeep: MeepMeep) {
* @return A [RoadRunnerBotEntity] instance that follows the given
* trajectory sequence.
*/
private fun followTrajectorySequence(trajectorySequence: TrajectorySequence): RoadRunnerBotEntity {
fun followTrajectorySequence(trajectorySequence: TrajectorySequence): RoadRunnerBotEntity {
val bot = this.build()
bot.followTrajectorySequence(trajectorySequence)

Expand All @@ -165,4 +165,4 @@ open class DefaultBotBuilder(private val meepMeep: MeepMeep) {
fun followTrajectorySequence(callback: AddTrajectorySequenceCallback): RoadRunnerBotEntity {
return followTrajectorySequence(callback.buildTrajectorySequence(build().drive))
}
}
}

0 comments on commit 8bb45b6

Please sign in to comment.