Avoid staircase indent

This commit is contained in:
Sebastian Kürten
2020-12-03 19:05:28 +01:00
committed by Torsten Grote
parent 1a5e789bec
commit b0d99a9f33

View File

@@ -74,9 +74,8 @@ class SettingsViewModel extends AndroidViewModel {
try {
LocalAuthor localAuthor = identityManager.getLocalAuthor();
AuthorInfo authorInfo = authorManager.getMyAuthorInfo();
ownIdentityInfo
.postValue(
new OwnIdentityInfo(localAuthor, authorInfo));
ownIdentityInfo.postValue(
new OwnIdentityInfo(localAuthor, authorInfo));
} catch (DbException e) {
LogUtils.logException(LOG, Level.WARNING, e);
}