Skip to content

Commit b94ff7d

Browse files
committed
chore: unless 옵션 삭제
1 parent 5fb4f10 commit b94ff7d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/kotlin/uoslife/servermeeting/match/service/MatchingService.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ class MatchingService(
3232
@Cacheable(
3333
value = ["meeting-participation"],
3434
key = "#userId + ':' + #season",
35-
unless = "#result == null"
3635
)
3736
fun getUserMeetingParticipation(userId: Long, season: Int): MeetingParticipationResponse {
3837
return matchedDao.findUserParticipation(userId, season)
@@ -41,7 +40,6 @@ class MatchingService(
4140
@Cacheable(
4241
value = ["match-info"],
4342
key = "#userId + ':' + #teamType + ':' + #season",
44-
unless = "#result == null"
4543
)
4644
fun getMatchInfo(userId: Long, teamType: TeamType, season: Int): MatchInfoResponse {
4745
val userTeam =

0 commit comments

Comments
 (0)