]> git.ktnx.net Git - mobile-ledger.git/commitdiff
whitespace
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 19 Dec 2019 20:06:37 +0000 (22:06 +0200)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 19 Dec 2019 20:06:37 +0000 (22:06 +0200)
app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileDetailActivity.java

index 1568c65fa6d7512e19ba13d0d662fe44a2c6bd98..4536e0d91f66aa6d22f1d6a48fadf6f64e9d9bad 100644 (file)
@@ -20,6 +20,9 @@ package net.ktnx.mobileledger.ui.activity;
 import android.os.Bundle;
 import android.view.Menu;
 
+import androidx.appcompat.app.ActionBar;
+import androidx.appcompat.widget.Toolbar;
+
 import net.ktnx.mobileledger.R;
 import net.ktnx.mobileledger.model.Data;
 import net.ktnx.mobileledger.model.MobileLedgerProfile;
@@ -29,9 +32,6 @@ import net.ktnx.mobileledger.utils.Colors;
 import java.util.ArrayList;
 import java.util.Locale;
 
-import androidx.appcompat.app.ActionBar;
-import androidx.appcompat.widget.Toolbar;
-
 import static net.ktnx.mobileledger.utils.Logger.debug;
 
 /**
@@ -51,9 +51,10 @@ public class ProfileDetailActivity extends CrashReportingActivity {
             ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
             if (profiles != null) {
                 profile = profiles.get(index);
-                if (profile == null) throw new AssertionError(
-                        String.format("Can't get profile " + "(index:%d) from the global list",
-                                index));
+                if (profile == null)
+                    throw new AssertionError(
+                            String.format("Can't get profile " + "(index:%d) from the global list",
+                                    index));
 
                 debug("profiles", String.format(Locale.ENGLISH, "Editing profile %s (%s); hue=%d",
                         profile.getName(), profile.getUuid(), profile.getThemeId()));
@@ -89,14 +90,16 @@ public class ProfileDetailActivity extends CrashReportingActivity {
             mFragment = new ProfileDetailFragment();
             mFragment.setArguments(arguments);
             getSupportFragmentManager().beginTransaction()
-                    .add(R.id.profile_detail_container, mFragment).commit();
+                                       .add(R.id.profile_detail_container, mFragment)
+                                       .commit();
         }
     }
     @Override
     public boolean onCreateOptionsMenu(Menu menu) {
         super.onCreateOptionsMenu(menu);
         debug("profiles", "[activity] Creating profile details options menu");
-        if (mFragment != null) mFragment.onCreateOptionsMenu(menu, getMenuInflater());
+        if (mFragment != null)
+            mFragment.onCreateOptionsMenu(menu, getMenuInflater());
 
         return true;
     }