Replace stubs with parent implementations.

Which makes real sense; reference from
https://github.com/inverse-inc/sogo/pull/201#discussion_r54880038 and
https://github.com/inverse-inc/sogo/pull/201#discussion_r54880094
pull/201/head
Patrice Levesque 2016-03-07 10:46:40 -05:00
parent 4210131e12
commit c3f69416be
1 changed files with 2 additions and 11 deletions

View File

@ -132,21 +132,12 @@
- (void) setIsNew: (BOOL) newIsNew
{
// Required for protocol <SOGoComponentOccurence>
// but not yet implemented. Violently warn if
// used.
NSLog (@"SOGoCalendarComponent::setIsNew is not implemented.");
abort();
[super setIsNew: newIsNew];
}
- (BOOL) isNew
{
// Required for protocol <SOGoComponentOccurence>
// but not yet implemented. Violently warn if
// used.
NSLog (@"SOGoCalendarComponent::isNew is not implemented.");
abort();
return false;
return [super isNew];
}
- (NSException *) changeParticipationStatus: (NSString *) newPartStat