Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit adbf9d85 authored by repo sync's avatar repo sync Committed by Android Git Automerger
Browse files

am d5ba9c22: Merge "resolved conflicts for merge of 17f95e92 to...

am d5ba9c22: Merge "resolved conflicts for merge of 17f95e92 to honeycomb-plus-aosp" into honeycomb-plus-aosp

* commit 'd5ba9c22':
  remove the code that clears the passwords when the sim is replaced with a different one.
parents 96b16ed1 d5ba9c22
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
@@ -1786,22 +1786,6 @@ public class AccountManagerService
        }
    }

    private String getMetaValue(String key) {
        synchronized (mCacheLock) {
            final SQLiteDatabase db = mOpenHelper.getReadableDatabase();
            Cursor c = db.query(TABLE_META,
                    new String[]{META_VALUE}, META_KEY + "=?", new String[]{key}, null, null, null);
            try {
                if (c.moveToNext()) {
                    return c.getString(0);
                }
                return null;
            } finally {
                c.close();
            }
        }
    }

    public IBinder onBind(Intent intent) {
        return asBinder();
    }