X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FMobileLedgerProfile.java;fp=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FMobileLedgerProfile.java;h=e17948f36c8a4d286772af71952f846a5084540c;hp=a12582714c73721922bfdd69eef197d8b4ad5764;hb=9fc964d2191f987c6ba26274d9af005e944f2bfa;hpb=5144bddd6f2b5611c0d7bd912b9a6f72e78a3f0a diff --git a/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java b/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java index a1258271..e17948f3 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java @@ -22,6 +22,9 @@ import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.util.SparseArray; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; + import net.ktnx.mobileledger.App; import net.ktnx.mobileledger.R; import net.ktnx.mobileledger.async.DbOpQueue; @@ -35,9 +38,6 @@ import java.util.List; import java.util.Locale; import java.util.UUID; -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; - import static net.ktnx.mobileledger.utils.Logger.debug; public final class MobileLedgerProfile { @@ -95,7 +95,9 @@ public final class MobileLedgerProfile { item.setPreferredAccountsFilter(cursor.getString(9)); item.setFutureDates(cursor.getInt(10)); list.add(item); - if (item.getUuid().equals(currentProfileUUID)) result = item; + if (item.getUuid() + .equals(currentProfileUUID)) + result = item; } } Data.profiles.setValue(list); @@ -264,11 +266,13 @@ public final class MobileLedgerProfile { debug("profile", "returning default value for " + name); result = default_value; } - else debug("profile", String.format("option %s=%s", name, result)); + else + debug("profile", String.format("option %s=%s", name, result)); return result; } - else return default_value; + else + return default_value; } catch (Exception e) { debug("db", "returning default value for " + name, e); @@ -335,7 +339,8 @@ public final class MobileLedgerProfile { public LedgerAccount loadAccount(SQLiteDatabase db, String accName) { LedgerAccount acc = tryLoadAccount(db, accName); - if (acc == null) throw new RuntimeException("Unable to load account with name " + accName); + if (acc == null) + throw new RuntimeException("Unable to load account with name " + accName); return acc; } @@ -377,7 +382,8 @@ public final class MobileLedgerProfile { return this.themeId; } public void setThemeId(Object o) { - setThemeId(Integer.valueOf(String.valueOf(o)).intValue()); + setThemeId(Integer.valueOf(String.valueOf(o)) + .intValue()); } public void setThemeId(int themeId) { // debug("profile", String.format("Profile.setThemeId(%d) called", themeId));