Skip to content

Commit

Permalink
Whitespaces aligned
Browse files Browse the repository at this point in the history
  • Loading branch information
admkopec committed May 9, 2024
1 parent cd8b6e1 commit 8f65cbb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 8f65cbb

Please sign in to comment.