Fix NPE on dozeTimeTIck

Fixes: 181825103
Test: manual
Change-Id: Iaca1a78aaee647f102fd45042d31db1d551e1f01
This commit is contained in:
Beverly
2021-03-04 12:41:27 -05:00
parent adb49c9c6d
commit fd361c5e45

View File

@@ -231,6 +231,9 @@ public class UdfpsController implements DozeReceiver, HbmCallback {
@Override
public void dozeTimeTick() {
if (mView == null) {
return;
}
mView.dozeTimeTick();
}