Refactoring

This commit is contained in:
M66B
2019-12-06 08:50:46 +01:00
parent ecc0392f77
commit 87f1655f16
50 changed files with 375 additions and 373 deletions

View File

@@ -242,7 +242,7 @@ public class FragmentGmail extends FragmentBase {
onAuthorized(name, token);
} catch (Throwable ex) {
Log.e(ex);
tvError.setText(Helper.formatThrowable(ex));
tvError.setText(Log.formatThrowable(ex));
grpError.setVisibility(View.VISIBLE);
new Handler().post(new Runnable() {
@@ -403,7 +403,7 @@ public class FragmentGmail extends FragmentBase {
if (ex instanceof IllegalArgumentException)
tvError.setText(ex.getMessage());
else
tvError.setText(Helper.formatThrowable(ex));
tvError.setText(Log.formatThrowable(ex));
grpError.setVisibility(View.VISIBLE);
new Handler().post(new Runnable() {