am 8ecd2aec: Merge change 23548 into eclair
Merge commit '8ecd2aecf66010e974d9125f40282168be76b440' into eclair-plus-aosp * commit '8ecd2aecf66010e974d9125f40282168be76b440': Fix some sign in errors.
This commit is contained in:
@@ -1397,7 +1397,7 @@ public class AccountManagerService extends IAccountManager.Stub {
|
||||
Log.v(TAG, "current IMSI=" + imsi + "; stored IMSI=" + storedImsi);
|
||||
}
|
||||
|
||||
if (!imsi.equals(storedImsi) && !"initial".equals(storedImsi)) {
|
||||
if (!imsi.equals(storedImsi) && !TextUtils.isEmpty(storedImsi)) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
Log.v(TAG, "wiping all passwords and authtokens");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user