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

Unverified Commit afb67261 authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé
Browse files

Reduce visibility to internal in app-common

parent d42fe65d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ import android.content.res.Resources
import app.k9mail.core.ui.legacy.theme2.common.R
import app.k9mail.legacy.account.AccountManager

class AccountColorPicker(
internal class AccountColorPicker(
    private val accountManager: AccountManager,
    private val resources: Resources,
) {
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext

// TODO Move to feature/account/setup
class AccountCreator(
internal class AccountCreator(
    private val accountColorPicker: AccountColorPicker,
    private val localFoldersCreator: SpecialLocalFoldersCreator,
    private val preferences: Preferences,
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ import net.thunderbird.feature.notification.NotificationSettings
import net.thunderbird.feature.notification.NotificationVibration

@Suppress("MagicNumber")
class CommonAccountDefaultsProvider(
internal class CommonAccountDefaultsProvider(
    private val resourceProvider: CoreResourceProvider,
    private val featureFlagProvider: FeatureFlagProvider,
) : AccountDefaultsProvider {
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ import net.thunderbird.feature.account.api.AccountId
import net.thunderbird.feature.account.api.profile.AccountProfile
import net.thunderbird.feature.account.core.AccountCoreExternalContract.AccountProfileLocalDataSource

class CommonAccountProfileLocalDataSource(
internal class CommonAccountProfileLocalDataSource(
    private val accountManager: LegacyAccountWrapperManager,
) : AccountProfileLocalDataSource {

+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ import app.k9mail.legacy.account.LegacyAccountWrapperManager
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.map

class CommonLegacyAccountWrapperManager(
internal class CommonLegacyAccountWrapperManager(
    private val accountManager: AccountManager,
) : LegacyAccountWrapperManager {