diff options
| author | 2018-03-20 18:17:15 +0000 | |
|---|---|---|
| committer | 2018-03-20 18:17:15 +0000 | |
| commit | eb37b9cbb0bad11557c850a2b2805929a666061c (patch) | |
| tree | e4eee93a19aef10c6be458576e4a43db8add9f58 | |
| parent | b5438ce1059d69b2ebd5be427fcadc60e1fdce7c (diff) | |
| parent | 040a10aabbe943142e9c823c26b34a2589fab3c2 (diff) | |
Merge "Adding a empty constructor so that the class can be emulated" into pi-dev
| -rw-r--r-- | packages/SystemUI/shared/src/com/android/systemui/shared/system/RecentsAnimationControllerCompat.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/SystemUI/shared/src/com/android/systemui/shared/system/RecentsAnimationControllerCompat.java b/packages/SystemUI/shared/src/com/android/systemui/shared/system/RecentsAnimationControllerCompat.java index 940c9ef522a3..5fa6c79a6e85 100644 --- a/packages/SystemUI/shared/src/com/android/systemui/shared/system/RecentsAnimationControllerCompat.java +++ b/packages/SystemUI/shared/src/com/android/systemui/shared/system/RecentsAnimationControllerCompat.java @@ -29,6 +29,8 @@ public class RecentsAnimationControllerCompat { private IRecentsAnimationController mAnimationController; + public RecentsAnimationControllerCompat() { } + public RecentsAnimationControllerCompat(IRecentsAnimationController animationController) { mAnimationController = animationController; } |