From fef604bfb9e8bcd7fdbe88850bd4223e4ed205bd Mon Sep 17 00:00:00 2001 From: Adam Brown Date: Thu, 18 Nov 2021 13:45:01 +0000 Subject: [PATCH] fixing line lengths --- .../im/vector/app/features/notifications/NotificationState.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vector/src/main/java/im/vector/app/features/notifications/NotificationState.kt b/vector/src/main/java/im/vector/app/features/notifications/NotificationState.kt index d772aaa749..c880b99db5 100644 --- a/vector/src/main/java/im/vector/app/features/notifications/NotificationState.kt +++ b/vector/src/main/java/im/vector/app/features/notifications/NotificationState.kt @@ -39,7 +39,8 @@ class NotificationState( private val renderedEvents: MutableList>, ) { - fun updateQueuedEvents(drawerManager: NotificationDrawerManager, action: NotificationDrawerManager.(NotificationEventQueue, List>) -> T): T { + fun updateQueuedEvents(drawerManager: NotificationDrawerManager, + action: NotificationDrawerManager.(NotificationEventQueue, List>) -> T): T { return synchronized(queuedEvents) { action(drawerManager, queuedEvents, renderedEvents) }