From bf6eb3e8f67efdf1b2cf1507d9a5c1b66d2b1689 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 29 May 2007 13:57:14 +0000 Subject: [PATCH] Monotone-Parent: 8f2b7fc90c85fe7414dd5c77432371c787e3fa59 Monotone-Revision: b11954fb755f22c4ffa2960406dac80c1cf087d4 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-05-29T13:57:14 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ SoObjects/Mailer/SOGoMailFolder.m | 23 ----------------------- 2 files changed, 5 insertions(+), 23 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6788588ee..eafe47f3e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-05-29 Wolfgang Sourdeau + + * SoObjects/Mailer/SOGoMailFolder.m ([SOGoMailFolder + -primaryFetchMailboxInfo]): useless method. Removed. + 2007-05-28 Wolfgang Sourdeau * SoObjects/Mailer/SOGoMailFolder.m ([SOGoMailFolder diff --git a/SoObjects/Mailer/SOGoMailFolder.m b/SoObjects/Mailer/SOGoMailFolder.m index 93a0c1723..9612b52a5 100644 --- a/SoObjects/Mailer/SOGoMailFolder.m +++ b/SoObjects/Mailer/SOGoMailFolder.m @@ -157,24 +157,6 @@ static BOOL useAltNamespace = NO; return [ds autorelease]; } -/* mailbox raw ops */ - -- (NSException *) primaryFetchMailboxInfo -{ - /* returns nil if fetch was successful */ - id info; - - if (selectInfo != nil) - return nil; /* select info exists, => no error */ - - info = [[self imap4Connection] infoForMailboxAtURL:[self imap4URL]]; - if ([info isKindOfClass:[NSException class]]) - return info; - - selectInfo = [info retain]; - return nil; /* no error */ -} - /* messages */ - (NSArray *) fetchUIDsMatchingQualifier: (id) _q @@ -615,9 +597,4 @@ static BOOL useAltNamespace = NO; return owner; } -- (BOOL) hasSupportForDefaultRoles -{ - return YES; -} - @end /* SOGoMailFolder */