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

Commit 6ed86912 authored by shamim-emon's avatar shamim-emon
Browse files

Refactor: Move legacy:preferences to core:preferences

parent 5df805f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -3,5 +3,5 @@ plugins {
}
}


android {
android {
    namespace = "app.k9mail.legacy.preferences"
    namespace = "net.thunderbird.core.preferences"
}
}
+1 −1
Original line number Original line Diff line number Diff line
package app.k9mail.legacy.preferences
package net.thunderbird.core.preferences


import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.Flow


+1 −1
Original line number Original line Diff line number Diff line
package app.k9mail.legacy.preferences
package net.thunderbird.core.preferences


class DefaultSettingsChangeBroker(
class DefaultSettingsChangeBroker(
    private val subscribers: MutableSet<SettingsChangeSubscriber> = mutableSetOf(),
    private val subscribers: MutableSet<SettingsChangeSubscriber> = mutableSetOf(),
+1 −1
Original line number Original line Diff line number Diff line
package app.k9mail.legacy.preferences
package net.thunderbird.core.preferences


/**
/**
 * Stores a snapshot of the app's general settings.
 * Stores a snapshot of the app's general settings.
+1 −1
Original line number Original line Diff line number Diff line
package app.k9mail.legacy.preferences
package net.thunderbird.core.preferences


import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.Flow


Loading