-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split legacy - part 4 #8056
Split legacy - part 4 #8056
Conversation
… `MessagingControllerRegistry`
…n and move interface to `:legacy:mailstore` module
…ralSettingsManager`
… it to satisfy tailrec
…acy:ui:account` module
@@ -47,6 +41,7 @@ internal class DefaultMessageCountsProvider( | |||
return MessageCounts(unreadCount, starredCount) | |||
} | |||
|
|||
@Suppress("TooGenericExceptionCaught") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have a strategy to remove some of these suppressions in the future? Maybe some good first bugs to file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This specific warning is generated by our detekt code quality tool, which is desired to be reported in general. But there are cases where it is wrong or it's hard to provide the exact exception. Especially as our legacy code is designed to rely on try/catch
constructs quite a lot. This is something we need to address when we touch that code base, but it's not easy to do.
Last Part 4 of the legacy split, see previous pull-request: #8054
This is a step of the Material 3 drawer implementation to move the current drawer into a separate module #8032.
The goal of this is to allow use of necessary dependencies in the new drawer feature without running into circular dependency issues and establish a standalone feature.