Merge "Fixing gradle complain on skipping constructor method mid-way" into sc-dev am: 6c3b1b0b76

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13464212

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: If4859868b79e802799c77b1eff2621e0dc486bc6
This commit is contained in:
TreeHugger Robot
2021-02-03 06:42:39 +00:00
committed by Automerger Merge Worker

View File

@@ -127,11 +127,9 @@ public class LockscreenLockIconController extends ViewController<LockIcon> {
mResources = resources;
mHeadsUpManagerPhone = headsUpManagerPhone;
if (view == null) {
return;
if (view != null) {
mKeyguardIndicationController.setLockIconController(this);
}
mKeyguardIndicationController.setLockIconController(this);
}
@Override