From 79ada94abd9200fba39e4322ab9c347fb90cc43d Mon Sep 17 00:00:00 2001 From: Pasin Suriyentrakorn Date: Mon, 13 Apr 2015 17:12:05 -0700 Subject: [PATCH] Removed body property from CBLAttachment per code review --- Source/API/CBLAttachment.m | 2 +- Source/API/CouchbaseLitePrivate.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/API/CBLAttachment.m b/Source/API/CBLAttachment.m index 9a7043b25..0fd1a8594 100644 --- a/Source/API/CBLAttachment.m +++ b/Source/API/CBLAttachment.m @@ -72,7 +72,7 @@ - (instancetype) _initWithContentType: (NSString*)contentType } -@synthesize revision=_rev, name=_name, body = _body, metadata=_metadata; +@synthesize revision=_rev, name=_name, metadata=_metadata; - (NSString *)description diff --git a/Source/API/CouchbaseLitePrivate.h b/Source/API/CouchbaseLitePrivate.h index 6e0b6843e..859402992 100644 --- a/Source/API/CouchbaseLitePrivate.h +++ b/Source/API/CouchbaseLitePrivate.h @@ -116,7 +116,6 @@ intoDatabase: (CBLDatabase*)database __attribute__((nonnull(2))); @property (readwrite, copy) NSString* name; @property (readwrite, retain) CBLRevision* revision; -@property (readonly) id body; @end