Merge "Adding a empty constructor so that the class can be emulated" into pi-dev

This commit is contained in:
TreeHugger Robot
2018-03-20 18:17:15 +00:00
committed by Android (Google) Code Review

View File

@@ -29,6 +29,8 @@ public class RecentsAnimationControllerCompat {
private IRecentsAnimationController mAnimationController;
public RecentsAnimationControllerCompat() { }
public RecentsAnimationControllerCompat(IRecentsAnimationController animationController) {
mAnimationController = animationController;
}