fix error when CoreStoreObject types have deep namespaces

This commit is contained in:
John Estropia
2017-05-17 15:55:33 +09:00
parent 67863120e0
commit eaf7544c50
4 changed files with 4 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ internal struct EntityIdentifier: Hashable {
internal init(_ type: CoreStoreObject.Type) {
self.category = .coreStore
self.interfacedClassName = String(reflecting: type)
self.interfacedClassName = NSStringFromClass(type)
}
internal init(_ type: DynamicObject.Type) {