From c3f69416be867168e5276a0adca01b0debb7ac5f Mon Sep 17 00:00:00 2001 From: Patrice Levesque Date: Mon, 7 Mar 2016 10:46:40 -0500 Subject: [PATCH] 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 --- SoObjects/Appointments/SOGoCalendarComponent.m | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/SoObjects/Appointments/SOGoCalendarComponent.m b/SoObjects/Appointments/SOGoCalendarComponent.m index e62197056..145869913 100644 --- a/SoObjects/Appointments/SOGoCalendarComponent.m +++ b/SoObjects/Appointments/SOGoCalendarComponent.m @@ -132,21 +132,12 @@ - (void) setIsNew: (BOOL) newIsNew { - // Required for protocol - // but not yet implemented. Violently warn if - // used. - NSLog (@"SOGoCalendarComponent::setIsNew is not implemented."); - abort(); + [super setIsNew: newIsNew]; } - (BOOL) isNew { - // Required for protocol - // but not yet implemented. Violently warn if - // used. - NSLog (@"SOGoCalendarComponent::isNew is not implemented."); - abort(); - return false; + return [super isNew]; } - (NSException *) changeParticipationStatus: (NSString *) newPartStat