diff --git a/core/modules/views/views.post_update.php b/core/modules/views/views.post_update.php index b540736912..6af6ef4ff0 100644 --- a/core/modules/views/views.post_update.php +++ b/core/modules/views/views.post_update.php @@ -38,12 +38,7 @@ function views_removed_post_updates() { * Update field names for multi-value base fields. */ function views_post_update_field_names_for_multivalue_fields(&$sandbox = NULL) { - /** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */ - $view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class); - $view_config_updater->setDeprecationsEnabled(FALSE); - \Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function ($view) use ($view_config_updater) { - return $view_config_updater->needsMultivalueBaseFieldUpdate($view); - }); + // @todo remove with 9.x updates. } /**