mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 10:18:59 +03:00
activities: Replace expression with the lambda equivalent.
This commit is contained in:
parent
62f874cde0
commit
76d3430983
1 changed files with 1 additions and 3 deletions
|
@ -116,9 +116,7 @@ public class ActivitiesActivity extends FileActivity implements ActivityListInte
|
|||
ThemeUtils.setColoredTitle(actionBar, getString(R.string.drawer_item_activities));
|
||||
}
|
||||
|
||||
swipeListRefreshLayout.setOnRefreshListener(() -> {
|
||||
mActionListener.loadActivites(null);
|
||||
}
|
||||
swipeListRefreshLayout.setOnRefreshListener(() -> mActionListener.loadActivites(null)
|
||||
);
|
||||
|
||||
// Since we use swipe-to-refresh for progress indication we can hide the inherited
|
||||
|
|
Loading…
Reference in a new issue