Delete all work fingerprints when unified lock changes to None/Swipe

Bug: 27551139
Change-Id: Ida398a922d9c42e65001b0a10e13552505824d2d
This commit is contained in:
Ricky Wai
2016-03-23 12:05:42 +00:00
parent 53940d4c7f
commit f86f986728

View File

@@ -815,7 +815,8 @@ public class FingerprintManager {
if (groupId != reqGroupId) { if (groupId != reqGroupId) {
Log.w(TAG, "Group id didn't match: " + groupId + " != " + reqGroupId); Log.w(TAG, "Group id didn't match: " + groupId + " != " + reqGroupId);
} }
mRemovalCallback.onRemovalSucceeded(mRemovalFingerprint); mRemovalCallback.onRemovalSucceeded(new Fingerprint(null, groupId, fingerId,
deviceId));
} }
} }