commit | 58a3a14215a24a7a6c43bb1db0d6c550a0db7d55 | [log] [tgz] |
---|---|---|
author | Dave Mankoff <[email protected]> | Tue Dec 17 09:37:46 2024 -0800 |
committer | Gerrit Code Review <[email protected]> | Tue Dec 17 09:37:46 2024 -0800 |
tree | f998f2313f550e6986db491cd42f1461c9ee44c0 | |
parent | 4288aff850a70ce5563afce07b9bd093ca60f163 [diff] | |
parent | af0f977c388881b2d51992a20f3c25e6e2c26010 [diff] |
Merge "Don't bind nullables into non-nullable values." into main
diff --git a/packages/SystemUI/src/com/android/systemui/classifier/FalsingStartModule.kt b/packages/SystemUI/src/com/android/systemui/classifier/FalsingStartModule.kt index a9f8f37..4246430 100644 --- a/packages/SystemUI/src/com/android/systemui/classifier/FalsingStartModule.kt +++ b/packages/SystemUI/src/com/android/systemui/classifier/FalsingStartModule.kt
@@ -27,5 +27,5 @@ @Binds @IntoMap @ClassKey(FalsingCoreStartable::class) - fun bindFalsingCoreStartable(falsingCoreStartable: FalsingCoreStartable?): CoreStartable? + fun bindFalsingCoreStartable(falsingCoreStartable: FalsingCoreStartable): CoreStartable }
diff --git a/packages/SystemUI/src/com/android/systemui/smartspace/dagger/SmartspaceModule.kt b/packages/SystemUI/src/com/android/systemui/smartspace/dagger/SmartspaceModule.kt index ea4e065..3a5245d 100644 --- a/packages/SystemUI/src/com/android/systemui/smartspace/dagger/SmartspaceModule.kt +++ b/packages/SystemUI/src/com/android/systemui/smartspace/dagger/SmartspaceModule.kt
@@ -65,8 +65,8 @@ @Binds @Named(LOCKSCREEN_SMARTSPACE_PRECONDITION) abstract fun bindSmartspacePrecondition( - lockscreenPrecondition: LockscreenPrecondition? - ): SmartspacePrecondition? + lockscreenPrecondition: LockscreenPrecondition + ): SmartspacePrecondition @BindsOptionalOf @Named(GLANCEABLE_HUB_SMARTSPACE_DATA_PLUGIN)
diff --git a/packages/SystemUI/src/com/android/systemui/util/EventLogModule.kt b/packages/SystemUI/src/com/android/systemui/util/EventLogModule.kt index ca0876c..27ada23 100644 --- a/packages/SystemUI/src/com/android/systemui/util/EventLogModule.kt +++ b/packages/SystemUI/src/com/android/systemui/util/EventLogModule.kt
@@ -22,5 +22,5 @@ @Module interface EventLogModule { - @SysUISingleton @Binds fun bindEventLog(eventLogImpl: EventLogImpl?): EventLog? + @SysUISingleton @Binds fun bindEventLog(eventLogImpl: EventLogImpl): EventLog }