diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php b/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php
index 75758e7..9895862 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php
@@ -84,8 +84,6 @@ public function execute() {
     // Let the world know that this is the page view we're using.
     views_set_page_view($this->view);
 
-    $this->view->getBreadcrumb(TRUE);
-
     // And now render the view.
     $render = $this->view->render();
 
diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/lib/Drupal/views/ViewExecutable.php
index 4b75242..4ac02a9 100644
--- a/core/modules/views/lib/Drupal/views/ViewExecutable.php
+++ b/core/modules/views/lib/Drupal/views/ViewExecutable.php
@@ -1724,40 +1724,6 @@ public function getPath() {
   }
 
   /**
-   * Get the breadcrumb used for this view.
-   *
-   * @param $set
-   *   If true, use drupal_set_breadcrumb() to install the breadcrumb.
-   */
-  public function getBreadcrumb($set = FALSE) {
-    // Now that we've built the view, extract the breadcrumb.
-    $base = TRUE;
-    $breadcrumb = array();
-
-    if (!empty($this->build_info['breadcrumb'])) {
-      foreach ($this->build_info['breadcrumb'] as $path => $title) {
-        // Check to see if the frontpage is in the breadcrumb trail; if it
-        // is, we'll remove that from the actual breadcrumb later.
-        if ($path == \Drupal::config('system.site')->get('page.front')) {
-          $base = FALSE;
-          $title = t('Home');
-        }
-        if ($title) {
-          $breadcrumb[] = l($title, $path, array('html' => TRUE));
-        }
-      }
-
-      if ($set) {
-        if ($base && $current_breadcrumbs = drupal_set_breadcrumb()) {
-          $breadcrumb = array_merge($current_breadcrumbs, $breadcrumb);
-        }
-        drupal_set_breadcrumb($breadcrumb);
-      }
-    }
-    return $breadcrumb;
-  }
-
-  /**
    * Creates a duplicate ViewExecutable object.
    *
    * Makes a copy of this view that has been sanitized of handlers, any runtime
