Skip to content

Commit

Permalink
fricking spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheikah45 committed Nov 25, 2023
1 parent 76bff65 commit 477388c
Showing 1 changed file with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.faforever.icebreaker.service

import com.faforever.icebreaker.config.FafProperties
import com.faforever.icebreaker.persistence.IceSessionEntity
import com.faforever.icebreaker.persistence.IceSessionRepository
import io.quarkus.scheduler.Scheduled
import jakarta.enterprise.inject.Instance
Expand Down Expand Up @@ -37,15 +36,15 @@ class SessionService(
// iceSessionRepository.persist(it)
// }

val servers = activeSessionHandlers.flatMap {
it.createSession(sessionId)
it.getIceServersSession(sessionId)
}
val servers = activeSessionHandlers.flatMap {
it.createSession(sessionId)
it.getIceServersSession(sessionId)
}

return Session(
id = sessionId,
servers = servers,
)
return Session(
id = sessionId,
servers = servers,
)
// } finally {
// iceSessionRepository.releaseGameLock(gameId)
// }
Expand Down

0 comments on commit 477388c

Please sign in to comment.