am 4fc50dae: Merge "Fix issue where can\'t FR Volantis if OEM unlock is enabled" into lmp-dev

* commit '4fc50daefa205c6a511459c2978c288df31dd505':
  Fix issue where can't FR Volantis if OEM unlock is enabled
This commit is contained in:
Andres Morales
2014-09-08 21:19:29 +00:00
committed by Android Git Automerger

View File

@@ -62,9 +62,8 @@ public class MasterClearConfirm extends Fragment {
final PersistentDataBlockManager pdbManager = (PersistentDataBlockManager)
getActivity().getSystemService(Context.PERSISTENT_DATA_BLOCK_SERVICE);
if (pdbManager != null) {
if (pdbManager != null && !pdbManager.getOemUnlockEnabled()) {
// if OEM unlock is enabled, this will be wiped during FR process.
if (!pdbManager.getOemUnlockEnabled()) {
final ProgressDialog progressDialog = getProgressDialog();
progressDialog.show();
@@ -86,7 +85,6 @@ public class MasterClearConfirm extends Fragment {
doMasterClear();
}
}.execute();
}
} else {
doMasterClear();
}