Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 569cd2af authored by Dave Mankoff's avatar Dave Mankoff Committed by Fabián Kozynski
Browse files

Fix nullable dagger bindings.

Bug: 388014814
Test: test_gradle_build.sh
Flag: EXEMPT minor refactor
Change-Id: Id435ee839e105a506c62f66693740df6b521edb1
parent df9a25c1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -54,11 +54,11 @@ interface QSModuleBase {
    /** A map of internal QS tiles. Ensures that this can be injected even if it is empty */
    @Multibinds fun tileMap(): Map<String?, QSTileImpl<*>?>?

    @Binds fun bindsQsSceneAdapter(impl: QSSceneAdapterImpl?): QSSceneAdapter?
    @Binds fun bindsQsSceneAdapter(impl: QSSceneAdapterImpl): QSSceneAdapter

    /** Dims the screen */
    @Binds
    fun bindReduceBrightColorsController(
        impl: ReduceBrightColorsControllerImpl?
    ): ReduceBrightColorsController?
        impl: ReduceBrightColorsControllerImpl
    ): ReduceBrightColorsController
}