From efbf8825b106b6b9a762d51ef94643ad1d760cf3 Mon Sep 17 00:00:00 2001 From: ethoms Date: Thu, 5 Nov 2015 07:29:45 +0800 Subject: [PATCH] Update SOGoParentFolder.m --- SoObjects/SOGo/SOGoParentFolder.m | 34 +------------------------------ 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/SoObjects/SOGo/SOGoParentFolder.m b/SoObjects/SOGo/SOGoParentFolder.m index 16b640791..35e5d842b 100644 --- a/SoObjects/SOGo/SOGoParentFolder.m +++ b/SoObjects/SOGo/SOGoParentFolder.m @@ -423,38 +423,6 @@ static SoSecurityManager *sm = nil; return error; } -- (NSException *) appendCollectedSources -{ - GCSChannelManager *cm; - EOAdaptorChannel *fc; - NSURL *folderLocation; - NSString *sql, *gcsFolderType; - NSException *error; - - cm = [GCSChannelManager defaultChannelManager]; - folderLocation = [[GCSFolderManager defaultFolderManager] folderInfoLocation]; - fc = [cm acquireOpenChannelForURL: folderLocation]; - if ([fc isOpen]) - { - gcsFolderType = [[self class] gcsFolderType]; - - sql = [NSString stringWithFormat: (@"SELECT c_path4 FROM %@" - @" WHERE c_path2 = '%@'" - @" AND c_folder_type = '%@'"), - [folderLocation gcsTableName], owner, gcsFolderType]; - - error = [self fetchSpecialFolders: sql withChannel: fc andFolderType: SOGoCollectedFolder]; - - [cm releaseChannel: fc]; - } - else - error = [NSException exceptionWithName: @"SOGoDBException" - reason: @"database connection could not be open" - userInfo: nil]; - - return error; -} - - (NSException *) initSubFolders { NSException *error; @@ -465,7 +433,7 @@ static SoSecurityManager *sm = nil; error = [self appendPersonalSources]; if (!error) if ([self respondsToSelector:@selector(appendCollectedSources)]) - error = [self appendCollectedSources]; + error = [self respondsToSelector:@selector(appendCollectedSources)]; if (!error) error = [self appendSystemSources]; // TODO : Not really a testcase, see function if (error)