Skip to content

Commit

Permalink
style(snackgame): 마지막 줄 개행
Browse files Browse the repository at this point in the history
  • Loading branch information
0chil committed Sep 24, 2024
1 parent 216be1e commit 5cfdbb1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ fun SnackgameBizRepository.ratePercentileOf(sessionId: Long): Percentile {
this ?: throw NoSuchSessionException()
return Percentile(this)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ class SnackgameBizService(

return SnackgameEndResponse.of(game, snackGameBizRepository.ratePercentileOf(sessionId))
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.snackgame.server.game.snackgame.core.domain;
package com.snackgame.server.game.snackgame.core.domain

import com.snackgame.server.game.session.exception.NoSuchSessionException
import org.springframework.data.jpa.repository.JpaRepository
Expand Down Expand Up @@ -38,4 +38,3 @@ fun SnackgameRepository.ratePercentileOf(sessionId: Long): Percentile {
return Percentile(this)
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ class SnackgameService(

return SnackgameEndResponse.of(game, snackGameRepository.ratePercentileOf(sessionId))
}
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package com.snackgame.server.game.snackgame.exception

class InvalidStreakException : SnackgameException("잘못된 스트릭입니다")
class InvalidStreakException : SnackgameException("잘못된 스트릭입니다")
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ fun SnackgameInifiniteRepository.ratePercentileOf(sessionId: Long): Percentile {
this ?: throw NoSuchSessionException()
return Percentile(this)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ class SnackgameBizTest {
)
)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ class SnackgameServiceTest {
val found = snackgameRepository.findByOwnerIdAndSessionId(땡칠().id, game.sessionId)!!
assertThat(found.score).isEqualTo(2)
}
}
}

0 comments on commit 5cfdbb1

Please sign in to comment.