Fixing gradle complain on skipping constructor method mid-way

Test: Verified apk compiles locally
Change-Id: I3688724d229607edf28043453798683fd8163f24
Bug: 152086714
This commit is contained in:
Sunny Goyal
2021-02-02 16:37:34 -08:00
parent a1a18aa7ba
commit 773dec5995

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