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

Commit 58a3a142 authored by Dave Mankoff's avatar Dave Mankoff Committed by Gerrit Code Review
Browse files

Merge "Don't bind nullables into non-nullable values." into main

parents 4288aff8 af0f977c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,5 +27,5 @@ interface FalsingStartModule {
    @Binds
    @IntoMap
    @ClassKey(FalsingCoreStartable::class)
    fun bindFalsingCoreStartable(falsingCoreStartable: FalsingCoreStartable?): CoreStartable?
    fun bindFalsingCoreStartable(falsingCoreStartable: FalsingCoreStartable): CoreStartable
}
+2 −2
Original line number Diff line number Diff line
@@ -65,8 +65,8 @@ abstract class SmartspaceModule {
    @Binds
    @Named(LOCKSCREEN_SMARTSPACE_PRECONDITION)
    abstract fun bindSmartspacePrecondition(
        lockscreenPrecondition: LockscreenPrecondition?
    ): SmartspacePrecondition?
        lockscreenPrecondition: LockscreenPrecondition
    ): SmartspacePrecondition

    @BindsOptionalOf
    @Named(GLANCEABLE_HUB_SMARTSPACE_DATA_PLUGIN)
+1 −1
Original line number Diff line number Diff line
@@ -22,5 +22,5 @@ import dagger.Module

@Module
interface EventLogModule {
    @SysUISingleton @Binds fun bindEventLog(eventLogImpl: EventLogImpl?): EventLog?
    @SysUISingleton @Binds fun bindEventLog(eventLogImpl: EventLogImpl): EventLog
}