diff --git a/core/lib/Drupal/Core/StackMiddleware/Session.php b/core/lib/Drupal/Core/StackMiddleware/Session.php deleted file mode 100644 index f8a1970..0000000 --- a/core/lib/Drupal/Core/StackMiddleware/Session.php +++ /dev/null @@ -1,57 +0,0 @@ -httpKernel = $http_kernel; - $this->sessionManager = $session_manager; - } - - /** - * {@inheritdoc} - */ - public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = TRUE) { - $this->sessionManager->startLazy(); - $result = $this->httpKernel->handle($request, $type, $catch); - $this->sessionManager->save(); - - return $result; - } - -}