diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-04-08 00:28:29 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-04-08 00:28:29 +0200 |
commit | a6844dda42f4274f1765eddb00a69c97c7ba8334 (patch) | |
tree | 9b0c58a887f774bbec496896d445411d823837cf /sw-server/src/main | |
parent | Enable ktlint on sw-ui (diff) | |
download | seven-wonders-a6844dda42f4274f1765eddb00a69c97c7ba8334.tar.gz seven-wonders-a6844dda42f4274f1765eddb00a69c97c7ba8334.tar.bz2 seven-wonders-a6844dda42f4274f1765eddb00a69c97c7ba8334.zip |
Fix tests
Diffstat (limited to 'sw-server/src/main')
-rw-r--r-- | sw-server/src/main/kotlin/org/luxons/sevenwonders/server/controllers/GameBrowserController.kt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sw-server/src/main/kotlin/org/luxons/sevenwonders/server/controllers/GameBrowserController.kt b/sw-server/src/main/kotlin/org/luxons/sevenwonders/server/controllers/GameBrowserController.kt index 3de0de97..3fa2ac87 100644 --- a/sw-server/src/main/kotlin/org/luxons/sevenwonders/server/controllers/GameBrowserController.kt +++ b/sw-server/src/main/kotlin/org/luxons/sevenwonders/server/controllers/GameBrowserController.kt @@ -41,7 +41,6 @@ class GameBrowserController @Autowired constructor( @SubscribeMapping("/games") // prefix /topic not shown fun listGames(principal: Principal): Collection<LobbyDTO> { logger.info("Player '{}' subscribed to /topic/games", principal.name) - val player = playerRepository.find(principal.name) return lobbyRepository.list().map { it.toDTO() } } |