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']);