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

Commit eb564041 authored by cketti's avatar cketti
Browse files

Reduce visibility of some classes in `com.fsck.k9.preferences`

parent 10d96c08
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ import com.fsck.k9.preferences.upgrader.AccountSettingsUpgraderTo91;
import static com.fsck.k9.preferences.upgrader.AccountSettingsUpgraderTo53.FOLDER_NONE;


public class AccountSettingsDescriptions {
class AccountSettingsDescriptions {
    static final Map<String, TreeMap<Integer, SettingsDescription>> SETTINGS;
    private static final Map<Integer, SettingsUpgrader> UPGRADERS;

+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ import com.fsck.k9.preferences.upgrader.GeneralSettingsUpgraderTo89;
import static com.fsck.k9.K9.LockScreenNotificationVisibility;


public class GeneralSettingsDescriptions {
class GeneralSettingsDescriptions {
    static final Map<String, TreeMap<Integer, SettingsDescription>> SETTINGS;
    private static final Map<Integer, SettingsUpgrader> UPGRADERS;

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ package com.fsck.k9.preferences

import app.k9mail.core.common.mail.Protocols

object ServerTypeConverter {
internal object ServerTypeConverter {
    @JvmStatic
    fun toServerSettingsType(exportType: String): String = exportType.lowercase()

+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ import com.fsck.k9.K9;
 * - add unit test that validates the default values are actually valid according to the validator
 */

public class Settings {
class Settings {
    /**
     * Version number of global and account settings.
     *
@@ -338,7 +338,7 @@ public class Settings {
        }
    }

    public static class V {
    static class V {
        public final Integer version;
        public final SettingsDescription description;