Remove usages of LPU.savedPatternExists

The correct method to call is isLockPatternEnabled, which
also checks whether we've actually selected a pattern.

Also removes the code for the obsolete pattern enabled setting.

Bug: 18931518
Change-Id: I6f369eb60f8f6bb1e33384cd06534c713ab52e79
This commit is contained in:
Adrian Roos
2015-01-08 16:20:00 +01:00
parent f788718f21
commit 6b879f50f6
4 changed files with 4 additions and 8 deletions

View File

@@ -148,7 +148,7 @@ public class ConfirmLockPattern extends SettingsActivity {
// on first launch, if no lock pattern is set, then finish with
// success (don't want user to get stuck confirming something that
// doesn't exist).
if (!mLockPatternUtils.savedPatternExists()) {
if (!mLockPatternUtils.isLockPatternEnabled()) {
getActivity().setResult(Activity.RESULT_OK);
getActivity().finish();
}