(sessionId: string)
| 21 | |
| 22 | // Retrieve a user session |
| 23 | getSession(sessionId: string): UserSession | undefined { |
| 24 | return this.sessions.get(sessionId); |
| 25 | } |
| 26 | |
| 27 | // Remove a session |
| 28 | removeSession(sessionId: string): boolean { |
nothing calls this directly
no outgoing calls
no test coverage detected