* Updates the time remaining for each client auth data in the stack * And removes any data that has expired (TimeRemaining <= 0) */
| 443 | * And removes any data that has expired (TimeRemaining <= 0) |
| 444 | */ |
| 445 | void Update(float DeltaTime) |
| 446 | { |
| 447 | Stack.RemoveAll([DeltaTime](FClientAuthData& Data) |
| 448 | { |
| 449 | Data.TimeRemaining -= DeltaTime; |
| 450 | return Data.TimeRemaining <= 0.f; |
| 451 | }); |
| 452 | } |
| 453 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected