From 8f65cbb6044dca2de005dc3ff2dea284cb50c31a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Kope=C4=87?= Date: Thu, 9 May 2024 17:54:31 +0200 Subject: [PATCH] Whitespaces aligned --- .../SchemaCompatibility/NSAttributeDescription+Data.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/ManagedModels/SchemaCompatibility/NSAttributeDescription+Data.swift b/Sources/ManagedModels/SchemaCompatibility/NSAttributeDescription+Data.swift index b32f945..b579b7c 100644 --- a/Sources/ManagedModels/SchemaCompatibility/NSAttributeDescription+Data.swift +++ b/Sources/ManagedModels/SchemaCompatibility/NSAttributeDescription+Data.swift @@ -32,8 +32,8 @@ extension CoreData.NSAttributeDescription: SchemaProperty { if let baseType = attributeType.swiftBaseType(isOptional: isOptional) { return baseType } - guard let attributeValueClassName else { return isOptional ? Any?.self : Any.self } - return NSClassFromString(attributeValueClassName) ?? (isOptional ? Any?.self : Any.self) + guard let attributeValueClassName else { return isOptional ? Any?.self : Any.self } + return NSClassFromString(attributeValueClassName) ?? (isOptional ? Any?.self : Any.self) } set { // Note: This needs to match up w/ PersistentModel+KVC.