Apply suggestions from code review

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
usbharu 2024-02-14 14:13:57 +09:00 committed by GitHub
parent 240b82b66c
commit aa25efccaf
2 changed files with 0 additions and 2 deletions

View File

@ -14,5 +14,4 @@ interface MuteService {
): FilterQueryModel
suspend fun getFilters(userId: Long, types: List<FilterType> = emptyList()): List<FilterQueryModel>
}

View File

@ -47,5 +47,4 @@ class MuteServiceImpl(
override suspend fun getFilters(userId: Long, types: List<FilterType>): List<FilterQueryModel> =
filterQueryService.findByUserIdAndType(userId, types)
}