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

Commit d5ba9c22 authored by repo sync's avatar repo sync Committed by Android (Google) Code Review
Browse files

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

parents bfc10795 9ab66ff4
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();
    }