style: fix lint (CI)

This commit is contained in:
usbharu 2024-09-12 17:53:29 +00:00 committed by github-actions[bot]
parent 3a81783d2c
commit 5969371a40
5 changed files with 74 additions and 74 deletions

View File

@ -49,7 +49,7 @@ class MvcConfigurer(
fun mdcFilter(): FilterRegistrationBean<MDCInsertingServletFilter> { fun mdcFilter(): FilterRegistrationBean<MDCInsertingServletFilter> {
val bean = FilterRegistrationBean<MDCInsertingServletFilter>() val bean = FilterRegistrationBean<MDCInsertingServletFilter>()
bean.filter = MDCInsertingServletFilter() bean.filter = MDCInsertingServletFilter()
bean.addUrlPatterns("/*"); bean.addUrlPatterns("/*")
bean.order = Int.MIN_VALUE bean.order = Int.MIN_VALUE
return bean return bean
} }

View File

@ -30,8 +30,6 @@ class ApplicationRequestLogInterceptor : AsyncHandlerInterceptor {
} }
} }
if (userDetailId != null) { if (userDetailId != null) {
MDC.put(userId, userDetailId.toString()) MDC.put(userId, userDetailId.toString())
} }

View File

@ -8,6 +8,4 @@ class MastodonReadTimeline(
val localOnly: Boolean, val localOnly: Boolean,
val remoteOnly: Boolean, val remoteOnly: Boolean,
val page: Page val page: Page
) { )
}

View File

@ -38,7 +38,8 @@ class MastodonReadTimelineApplicationService(
val readTimeline = timelineStore.readTimeline(timeline, readTimelineOption, command.page, principal) val readTimeline = timelineStore.readTimeline(timeline, readTimelineOption, command.page, principal)
return PaginationList(readTimeline.map { return PaginationList(
readTimeline.map {
Status( Status(
it.postId.id.toString(), it.postId.id.toString(),
it.post.url.toString(), it.post.url.toString(),
@ -103,7 +104,9 @@ class MastodonReadTimelineApplicationService(
pinned = false, pinned = false,
filtered = emptyList(), filtered = emptyList(),
) )
}, readTimeline.next?.id, readTimeline.prev?.id) },
readTimeline.next?.id, readTimeline.prev?.id
)
} }
companion object { companion object {

View File

@ -68,7 +68,8 @@ class SpringTimelineApi(
minId?.toLongOrNull(), minId?.toLongOrNull(),
limit limit
) )
), principal ),
principal
).asFlow() ).asFlow()
) )
} }