Skip to content

Commit

Permalink
fix: remove unneeded NSObject dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
melloskitten committed Oct 29, 2019
1 parent 0f4e119 commit ccd4aaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CoatySwift/Classes/Common/CoatyUUID.swift
Expand Up @@ -10,7 +10,7 @@ import Foundation
/// Custom implementation of a UUID that actually is compatible with the RFC
/// specification of sending UUIDs over the network (lowercase in contrast to Apple's
/// uppercase implementation).
public class CoatyUUID: NSObject, Codable {
public class CoatyUUID: Codable {

private var uuid: UUID

Expand Down
2 changes: 1 addition & 1 deletion CoatySwift/Classes/Model/Core Types/CoatyObject.swift
Expand Up @@ -16,7 +16,7 @@ public let COATY_OBJECT_TYPE_NAMESPACE_PREFIX = "coaty."

/// The base type of all objects in the Coaty object model. Application-specific object types
/// extend either CoatyObject directly or any of its derived core types.
open class CoatyObject: NSObject, Codable {
open class CoatyObject: Codable {

// MARK: - Required attributes.

Expand Down

0 comments on commit ccd4aaf

Please sign in to comment.