From ab3f9fa4da7e8baef802be2706ff6294a9de1756 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Thu, 15 Feb 2024 13:50:31 +0100 Subject: [PATCH] TASK: Remove obsolete reference handing logic --- Classes/Domain/Service/NodePropertyConverterService.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Classes/Domain/Service/NodePropertyConverterService.php b/Classes/Domain/Service/NodePropertyConverterService.php index 8317b56ae6..a2edabad6b 100644 --- a/Classes/Domain/Service/NodePropertyConverterService.php +++ b/Classes/Domain/Service/NodePropertyConverterService.php @@ -278,14 +278,7 @@ protected function createConfiguration($dataType) $propertyMappingConfiguration = new PropertyMappingConfiguration(); $propertyMappingConfiguration->allowAllProperties(); - $parsedType = [ - 'elementType' => null, - 'type' => $dataType - ]; - // Special handling for "reference(s)", should be deprecated and normlized to array - if ($dataType !== 'references' && $dataType !== 'reference') { - $parsedType = TypeHandling::parseType($dataType); - } + $parsedType = TypeHandling::parseType($dataType); if ($this->setTypeConverterForType($propertyMappingConfiguration, $dataType) === false) { $this->setTypeConverterForType($propertyMappingConfiguration, $parsedType['type']);