diff --git a/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php b/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php index d70aee86af3..c8b30cea014 100644 --- a/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php +++ b/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php @@ -34,11 +34,6 @@ abstract class DraggableListBuilder extends ConfigEntityListBuilder implements F */ protected $weightKey = FALSE; - /** - * {@inheritdoc} - */ - protected $limit = FALSE; - /** * The form builder. * @@ -56,6 +51,7 @@ abstract class DraggableListBuilder extends ConfigEntityListBuilder implements F if ($this->entityType->hasKey('weight')) { $this->weightKey = $this->entityType->getKey('weight'); } + $this->limit = FALSE; } /** diff --git a/core/modules/block/src/BlockListBuilder.php b/core/modules/block/src/BlockListBuilder.php index be5ac8fcb46..01ae598616e 100644 --- a/core/modules/block/src/BlockListBuilder.php +++ b/core/modules/block/src/BlockListBuilder.php @@ -52,11 +52,6 @@ class BlockListBuilder extends ConfigEntityListBuilder implements FormInterface */ protected $formBuilder; - /** - * {@inheritdoc} - */ - protected $limit = FALSE; - /** * The messenger. * @@ -82,6 +77,7 @@ class BlockListBuilder extends ConfigEntityListBuilder implements FormInterface $this->themeManager = $theme_manager; $this->formBuilder = $form_builder; $this->messenger = $messenger; + $this->limit = FALSE; } /** diff --git a/core/modules/views_ui/src/ViewListBuilder.php b/core/modules/views_ui/src/ViewListBuilder.php index 1595cf945bc..2f6302ac304 100644 --- a/core/modules/views_ui/src/ViewListBuilder.php +++ b/core/modules/views_ui/src/ViewListBuilder.php @@ -26,11 +26,6 @@ class ViewListBuilder extends ConfigEntityListBuilder { */ protected $displayManager; - /** - * {@inheritdoc} - */ - protected $limit; - /** * {@inheritdoc} */