aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPFolderInfo.m
diff options
context:
space:
mode:
Diffstat (limited to 'src/objc/imap/MCOIMAPFolderInfo.m')
-rw-r--r--src/objc/imap/MCOIMAPFolderInfo.m32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/objc/imap/MCOIMAPFolderInfo.m b/src/objc/imap/MCOIMAPFolderInfo.m
deleted file mode 100644
index be1d2c3e..00000000
--- a/src/objc/imap/MCOIMAPFolderInfo.m
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// MCOIMAPFolderInfo.m
-// mailcore2
-//
-// Created by DINH Viêt Hoà on 3/25/13.
-// Copyright (c) 2013 MailCore. All rights reserved.
-//
-
-#import "MCOIMAPFolderInfo.h"
-
-@implementation MCOIMAPFolderInfo {
- uint32_t _uidNext;
- uint32_t _uidValidity;
- uint64_t _modSequenceValue;
- int _messageCount;
- uint32_t _firstUnseenUid;
- BOOL _allowsNewPermanentFlags;
-}
-
-@synthesize uidNext = _uidNext;
-@synthesize uidValidity = _uidValidity;
-@synthesize modSequenceValue = _modSequenceValue;
-@synthesize messageCount = _messageCount;
-@synthesize firstUnseenUid = _firstUnseenUid;
-@synthesize allowsNewPermanentFlags = _allowsNewPermanentFlags;
-
-+ (MCOIMAPFolderInfo *) info
-{
- return [[[MCOIMAPFolderInfo alloc] init] autorelease];
-}
-
-@end