diff options
| author | 2025-01-13 15:59:46 +0000 | |
|---|---|---|
| committer | 2025-01-13 16:10:53 -0500 | |
| commit | 569cd2afa13d36ca4e59acf9e1443f21bf7bdc0a (patch) | |
| tree | f09aebcfdaf98871e8d18242210fcbbed13af494 | |
| parent | df9a25c10feb25007cff6311983208bb5f50e523 (diff) | |
Fix nullable dagger bindings.
Bug: 388014814
Test: test_gradle_build.sh
Flag: EXEMPT minor refactor
Change-Id: Id435ee839e105a506c62f66693740df6b521edb1
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/dagger/QSModuleBase.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/dagger/QSModuleBase.kt b/packages/SystemUI/src/com/android/systemui/qs/dagger/QSModuleBase.kt index 3fd87689b169..e2a39160defc 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/dagger/QSModuleBase.kt +++ b/packages/SystemUI/src/com/android/systemui/qs/dagger/QSModuleBase.kt @@ -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 } |