aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/abstract/MCOAbstractMessage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objc/abstract/MCOAbstractMessage.h')
-rw-r--r--src/objc/abstract/MCOAbstractMessage.h6
1 files changed, 3 insertions, 3 deletions
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<MCOAbstractPart *> *) 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 *> * /* 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<MCOAbstractPart *> *) requiredPartsForRendering;
+- (NSArray *) requiredPartsForRendering;
@end