diff options
| author | 2019-10-24 19:37:48 +0000 | |
|---|---|---|
| committer | 2019-10-24 19:37:48 +0000 | |
| commit | 85c46f62a99977ea006aa95d1d8b1b66ba6d2e9d (patch) | |
| tree | 9f5e72307c1352ed904ecefce45d84f598b9fe70 | |
| parent | ab42f6761b47f0c959e17430911ae35d30e6b6be (diff) | |
| parent | cb235b232abb0c225f43ebc906ddc76569018f57 (diff) | |
Merge "Mark BiometricUnlockController as @Singleton"
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/BiometricUnlockController.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/BiometricUnlockController.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/BiometricUnlockController.java index bd3d848eaf7f..ffcbc40e7b70 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/BiometricUnlockController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/BiometricUnlockController.java @@ -47,10 +47,12 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import javax.inject.Inject; +import javax.inject.Singleton; /** * Controller which coordinates all the biometric unlocking actions with the UI. */ +@Singleton public class BiometricUnlockController extends KeyguardUpdateMonitorCallback { private static final String TAG = "BiometricUnlockCtrl"; |