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

Commit e2d47ce4 authored by Dave Mankoff's avatar Dave Mankoff Committed by Android (Google) Code Review
Browse files

Merge "Fix nullable dagger bindings." into main

parents 04203c75 569cd2af
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
}