mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 11:49:04 +01:00
Replace a statment lambda with method reference
This commit is contained in:
@@ -118,9 +118,8 @@ public class ConversationSettingsFragment extends BaseFragment {
|
|||||||
.getAutoDeleteTimer(txn, c.getId());
|
.getAutoDeleteTimer(txn, c.getId());
|
||||||
disappearingMessages = timer != NO_AUTO_DELETE_TIMER;
|
disappearingMessages = timer != NO_AUTO_DELETE_TIMER;
|
||||||
});
|
});
|
||||||
listener.runOnUiThreadUnlessDestroyed(() -> {
|
listener.runOnUiThreadUnlessDestroyed(
|
||||||
displaySettings();
|
this::displaySettings);
|
||||||
});
|
|
||||||
} catch (DbException e) {
|
} catch (DbException e) {
|
||||||
logException(LOG, WARNING, e);
|
logException(LOG, WARNING, e);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user