Skip to content

Commit

Permalink
chore: unless 옵션 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
23tae committed Dec 5, 2024
1 parent 5fb4f10 commit b94ff7d
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class MatchingService(
@Cacheable(
value = ["meeting-participation"],
key = "#userId + ':' + #season",
unless = "#result == null"
)
fun getUserMeetingParticipation(userId: Long, season: Int): MeetingParticipationResponse {
return matchedDao.findUserParticipation(userId, season)
Expand All @@ -41,7 +40,6 @@ class MatchingService(
@Cacheable(
value = ["match-info"],
key = "#userId + ':' + #teamType + ':' + #season",
unless = "#result == null"
)
fun getMatchInfo(userId: Long, teamType: TeamType, season: Int): MatchInfoResponse {
val userTeam =
Expand Down

0 comments on commit b94ff7d

Please sign in to comment.