From 8e3d87710f7a6fb934180d6647f9e449e72a8268 Mon Sep 17 00:00:00 2001
From: Edys Meza <edysmeza@gmail.com>
Date: Thu, 1 Oct 2020 12:55:39 -0600
Subject: [PATCH] Issue 3167034: update deprecation message

---
 core/modules/editor/src/Plugin/Filter/EditorFileReference.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/modules/editor/src/Plugin/Filter/EditorFileReference.php b/core/modules/editor/src/Plugin/Filter/EditorFileReference.php
index 889f45f15ec5..8cb9aad2d60c 100644
--- a/core/modules/editor/src/Plugin/Filter/EditorFileReference.php
+++ b/core/modules/editor/src/Plugin/Filter/EditorFileReference.php
@@ -56,7 +56,7 @@ class EditorFileReference extends FilterBase implements ContainerFactoryPluginIn
   public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityRepositoryInterface $entity_repository, ImageFactory $image_factory = NULL) {
     $this->entityRepository = $entity_repository;
     if ($image_factory === NULL) {
-      @trigger_error('Calling ' . __METHOD__ . '() without the $image_factory argument is deprecated in drupal:9.1.0 and will be required in drupal:10.0.0. See https://www.drupal.org/node/3173719', E_USER_DEPRECATED);
+      @trigger_error('Calling ' . __METHOD__ . '() without the $image_factory argument is deprecated in drupal:9.1.0 and is required in drupal:10.0.0. See https://www.drupal.org/node/3173719', E_USER_DEPRECATED);
       $image_factory = \Drupal::service('image.factory');
     }
     $this->imageFactory = $image_factory;
-- 
GitLab