diff --git a/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Dto/RelationDistributionStrategy.php b/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Dto/RelationDistributionStrategy.php index 45213be511..8ca1fd33f0 100644 --- a/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Dto/RelationDistributionStrategy.php +++ b/Neos.ContentRepository.Core/Classes/Feature/NodeMove/Dto/RelationDistributionStrategy.php @@ -39,16 +39,6 @@ public static function default(): self return self::STRATEGY_GATHER_ALL; } - public static function fromName(string $name): ?self - { - foreach (self::cases() as $status) { - if ($name === $status->name) { - return $status; - } - } - return null; - } - public function jsonSerialize(): string { return $this->value; diff --git a/Neos.Neos/NodeTypes/Mixin/Content.yaml b/Neos.Neos/NodeTypes/Mixin/Content.yaml index b62eb7f9b8..146c402c14 100644 --- a/Neos.Neos/NodeTypes/Mixin/Content.yaml +++ b/Neos.Neos/NodeTypes/Mixin/Content.yaml @@ -24,5 +24,3 @@ inspector: editorOptions: baseNodeType: 'Neos.Neos:Content' - options: - moveNodeStrategy: STRATEGY_SCATTER diff --git a/Neos.Neos/NodeTypes/Mixin/Document.yaml b/Neos.Neos/NodeTypes/Mixin/Document.yaml index 62406b1e95..c13185e412 100644 --- a/Neos.Neos/NodeTypes/Mixin/Document.yaml +++ b/Neos.Neos/NodeTypes/Mixin/Document.yaml @@ -66,5 +66,3 @@ inspector: group: 'visibility' position: 40 - options: - moveNodeStrategy: STRATEGY_GATHER_ALL