Skip to content

Commit

Permalink
DRAW-241 style: ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
comforest committed Aug 24, 2024
1 parent 47312bf commit 6a6e01a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class MetricManager(
Gauge
.builder("playing_game_room_gauge", playingPlayingRoomCount) { it.toDouble() }
.register(metric)

}

fun increaseWebsocket() {
Expand All @@ -31,11 +30,11 @@ class MetricManager(
connectedWebSocketCount.decrementAndGet()
}

fun increaseGameCount(){
fun increaseGameCount() {
playingPlayingRoomCount.incrementAndGet()
}

fun decreaseGameCount(){
fun decreaseGameCount() {
playingPlayingRoomCount.decrementAndGet()
}
}

0 comments on commit 6a6e01a

Please sign in to comment.