mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +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());
|
||||
disappearingMessages = timer != NO_AUTO_DELETE_TIMER;
|
||||
});
|
||||
listener.runOnUiThreadUnlessDestroyed(() -> {
|
||||
displaySettings();
|
||||
});
|
||||
listener.runOnUiThreadUnlessDestroyed(
|
||||
this::displaySettings);
|
||||
} catch (DbException e) {
|
||||
logException(LOG, WARNING, e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user