Commit 767a2c1f by Dima Bart

Remove deprecated BUYCollection properties.

parent adbfef17
...@@ -29,12 +29,6 @@ ...@@ -29,12 +29,6 @@
@interface BUYCollection : _BUYCollection {} @interface BUYCollection : _BUYCollection {}
@property (nonatomic, readonly) NSDate *createdAtDate NS_DEPRECATED_IOS(8_0, 9_0);
@property (nonatomic, readonly) NSDate *updatedAtDate NS_DEPRECATED_IOS(8_0, 9_0);
@property (nonatomic, readonly) NSDate *publishedAtDate NS_DEPRECATED_IOS(8_0, 9_0);
@property (nonatomic, readonly) NSURL *imageURL NS_DEPRECATED_IOS(8_0, 9_0);
@property (nonatomic, readonly) NSString *stringDescription; @property (nonatomic, readonly) NSString *stringDescription;
/** /**
......
...@@ -29,27 +29,6 @@ ...@@ -29,27 +29,6 @@
#import "NSString+BUYAdditions.h" #import "NSString+BUYAdditions.h"
@implementation BUYCollection @implementation BUYCollection
@synthesize stringDescription=_stringDescription;
- (NSDate *)createdAtDate
{
return self.createdAt;
}
- (NSDate *)updatedAtDate
{
return self.updatedAt;
}
- (NSDate *)publishedAtDate
{
return self.publishedAt;
}
- (NSURL *)imageURL
{
return self.image.sourceURL;
}
- (void)updateStringDescription - (void)updateStringDescription
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment