Merge "Fixing gradle complain on skipping constructor method mid-way" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-02-03 06:09:58 +00:00
committed by Android (Google) Code Review

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