am b5b67779: Merge change I7fa8c508 into eclair-mr2

Merge commit 'b5b6777903d85349cf4baa07a54e1629551ea712' into eclair-mr2-plus-aosp

* commit 'b5b6777903d85349cf4baa07a54e1629551ea712':
  make erase-password-on-SIM-change optional
This commit is contained in:
Doug Zongker
2009-10-13 15:04:05 -07:00
committed by Android Git Automerger

View File

@@ -223,7 +223,11 @@ public class AccountManagerService
mBindHelper = new AuthenticatorBindHelper(mContext, mAuthenticatorCache, mMessageHandler,
MESSAGE_CONNECTED, MESSAGE_DISCONNECTED);
mSimWatcher = new SimWatcher(mContext);
if (SystemProperties.getBoolean("ro.config.sim_password_clear", false)) {
mSimWatcher = new SimWatcher(mContext);
} else {
mSimWatcher = null;
}
sThis.set(this);
onRegisteredServicesCacheChanged();