/** {@inheritDoc} */
 @WorkerThread
 @Override
 public int update(@NonNull UpdateQuery updateQuery, @NonNull ContentValues contentValues) {
   return contentResolver.update(
       updateQuery.uri(),
       contentValues,
       nullableString(updateQuery.where()),
       nullableArrayOfStrings(updateQuery.whereArgs()));
 }