Remove duplicate declarations for createdAt, updatedAt, userID and user from DBPost

DBPost inherits from DBContentObject which has these accessors already defined.
This commit is contained in:
Victor Kryukov
2011-06-11 21:41:20 +04:00
parent eca655abbd
commit 5db087a73a
2 changed files with 0 additions and 14 deletions

View File

@@ -28,16 +28,6 @@
*/
@property (nonatomic, retain) NSString* body;
/**
* A timestamp of when the Post was created
*/
@property (nonatomic, retain) NSDate* createdAt;
/**
* A timestamp of when the Post was last updated
*/
@property (nonatomic, retain) NSDate* updatedAt;
////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark Relationship properties

View File

@@ -18,13 +18,9 @@
@dynamic attachmentPath;
@dynamic attachmentUpdatedAt;
@dynamic body;
@dynamic createdAt;
@dynamic topicID;
@dynamic updatedAt;
@dynamic userID;
@dynamic postID;
@dynamic username;
@dynamic user;
@dynamic topic;
@synthesize newAttachment = _newAttachment;