Make checkIfShuttleIsAtStop part of the ShuttleGetterRepository interface

This commit is contained in:
2025-11-20 17:48:49 -08:00
parent ddab9b96ff
commit 37fbc3ef45
3 changed files with 10 additions and 2 deletions

View File

@@ -223,7 +223,7 @@ export class UnoptimizedInMemoryShuttleRepository
this.shuttlesAtStop.delete(shuttleId);
}
private async checkIfShuttleIsAtStop(shuttleId: string) {
public async checkIfShuttleIsAtStop(shuttleId: string) {
return this.shuttlesAtStop.has(shuttleId);
}