Merge "Converting some anonymous classes to lambda calls" into ub-launcher3-master

This commit is contained in:
Sunny Goyal
2020-03-10 08:43:41 +00:00
committed by Android (Google) Code Review
8 changed files with 41 additions and 49 deletions

View File

@@ -212,12 +212,7 @@ public class AllAppsTransitionController implements StateHandler, OnDeviceProfil
}
public AnimatorListenerAdapter getProgressAnimatorListener() {
return new AnimationSuccessListener() {
@Override
public void onAnimationSuccess(Animator animator) {
onProgressAnimationEnd();
}
};
return AnimationSuccessListener.forRunnable(this::onProgressAnimationEnd);
}
public void setupViews(AllAppsContainerView appsView) {