Skip to content

Commit

Permalink
incorrect base object
Browse files Browse the repository at this point in the history
  • Loading branch information
evermeer committed Jan 14, 2017
1 parent 89df436 commit f5c0132
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion EVCloudKitDao.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "EVCloudKitDao"
s.version = "3.3.1"
s.version = "3.3.2"
s.summary = "iOS: Simplified access to Apple’s CloudKit"
s.description = "Simplified access to Apple’s CloudKit using reflection and generics"

Expand Down
8 changes: 4 additions & 4 deletions Source/EVCloudData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ fileprivate func > <T : Comparable>(lhs: T?, rhs: T?) -> Bool {
}


@available(*, deprecated, message: "Use CKDataObject instead")
open class EVCloudKitDataObject: CKDataObject {
}


/**
Wrapper class for being able to use a class instance Dictionary.
Expand All @@ -39,10 +43,6 @@ private class DataContainerWrapper {
var privateContainers : Dictionary<String,EVCloudData> = Dictionary<String,EVCloudData>()
}

@available(deprecated, message: "Use EVCloudData instead")
open class EVCloudKitDataObject: EVCloudData {
}

/**
Class for access to Apple's CloudKit data the easiest way possible
*/
Expand Down

0 comments on commit f5c0132

Please sign in to comment.