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

Commit 9ab66ff4 authored by repo sync's avatar repo sync
Browse files

resolved conflicts for merge of 17f95e92 to honeycomb-plus-aosp

Change-Id: Ic82ab20e216d810f6372c833ac49c3856449c09c
parents 71ba7d34 17f95e92
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();
    }