diff --git a/core/lib/Drupal/Core/Session/SessionManager.php b/core/lib/Drupal/Core/Session/SessionManager.php
index 4de88a1..30ca61b 100644
--- a/core/lib/Drupal/Core/Session/SessionManager.php
+++ b/core/lib/Drupal/Core/Session/SessionManager.php
@@ -52,13 +52,6 @@ class SessionManager implements SessionManagerInterface {
   protected static $enabled = TRUE;
 
   /**
-   * Whether the session has been started.
-   *
-   * @var bool
-   */
-  protected static $started = FALSE;
-
-  /**
    * Constructs a new session manager instance.
    *
    * @param \Symfony\Component\HttpFoundation\RequestStack $request
@@ -127,7 +120,6 @@ public function start() {
     $session_data = isset($_SESSION) ? $_SESSION : NULL;
 
     session_start();
-    static::$started = TRUE;
 
     // Restore session data.
     if (!empty($session_data)) {
@@ -175,7 +167,7 @@ public function save() {
    * {@inheritdoc}
    */
   public function isStarted() {
-    return static::$started && session_status() === \PHP_SESSION_ACTIVE;
+    return session_status() === \PHP_SESSION_ACTIVE;
   }
 
   /**
