]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/Data.java
whitespace
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / Data.java
index 02ba81d454ad9acddbeadad301091df7a7c251d4..a379f2bce8adadbc68eefb25bd808f0d51950e8f 100644 (file)
@@ -60,6 +60,7 @@ public final class Data {
             new MutableLiveData<>();
     public static final MutableLiveData<Boolean> currencyGap = new MutableLiveData<>(true);
     public static final MutableLiveData<Locale> locale = new MutableLiveData<>(Locale.getDefault());
+    public static final MutableLiveData<Boolean> drawerOpen = new MutableLiveData<>(false);
     private static final MutableLiveData<MobileLedgerProfile> profile =
             new InertMutableLiveData<>();
     private static final AtomicInteger backgroundTaskCount = new AtomicInteger(0);
@@ -70,7 +71,6 @@ public final class Data {
     public static MobileLedgerProfile getProfile() {
         return Objects.requireNonNull(profile.getValue());
     }
-    public static final MutableLiveData<Boolean> drawerOpen = new MutableLiveData<>(false);
     public static void backgroundTaskStarted() {
         int cnt = backgroundTaskCount.incrementAndGet();
         debug("data",