From 6f3026a987351eec500552596f55b5cd33a5c1dd Mon Sep 17 00:00:00 2001 From: "Hoa V. DINH" Date: Sat, 19 Nov 2016 17:26:57 -0800 Subject: Revert "Type annotations (#1530)" This reverts commit abedd87bb02f975b0b1ee9c4cf2f0e6adde31366. --- src/objc/abstract/MCOAbstractMessage.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/objc/abstract/MCOAbstractMessage.h') diff --git a/src/objc/abstract/MCOAbstractMessage.h b/src/objc/abstract/MCOAbstractMessage.h index 71d74c84..ed858808 100644 --- a/src/objc/abstract/MCOAbstractMessage.h +++ b/src/objc/abstract/MCOAbstractMessage.h @@ -40,19 +40,19 @@ namespace mailcore { It will return an array of MCOIMAPPart for MCOIMAPMessage. It will return an array of MCOAttachment for MCOMessageParser. It will return an array of MCOAttachment for MCOMessageBuilder. */ -- (NSArray *) attachments; +- (NSArray * /* MCOAbstractPart */) attachments; /** All image attachments included inline in the message through cid: URLs. It will return an array of MCOIMAPPart for MCOIMAPMessage. It will return an array of MCOAttachment for MCOMessageParser. It will return an array of MCOAttachment for MCOMessageBuilder. */ -- (NSArray * /* MCOAbstractPart */) htmlInlineAttachments; +- (NSArray * /* MCOAbstractPart */) htmlInlineAttachments; /** Returns parts required to render the message as plain text or html. This does not include inline images and attachments, but only the text content */ -- (NSArray *) requiredPartsForRendering; +- (NSArray *) requiredPartsForRendering; @end -- cgit v1.2.3