@@ -214,11 +214,11 @@ * @param target The target on which to call the selector * @param selector The selector to call on the target * @param repeats Whether the timer repeats after it has been executed * @return An initialized timer */ -- initWithFireDate: (OFDate*)fireDate +- initWithFireDate: (OFDate *)fireDate interval: (of_time_interval_t)interval target: (id)target selector: (SEL)selector repeats: (bool)repeats; @@ -233,11 +233,11 @@ * @param selector The selector to call on the target * @param object An object to pass when calling the selector on the target * @param repeats Whether the timer repeats after it has been executed * @return An initialized timer */ -- initWithFireDate: (OFDate*)fireDate +- initWithFireDate: (OFDate *)fireDate interval: (of_time_interval_t)interval target: (id)target selector: (SEL)selector object: (nullable id)object repeats: (bool)repeats; @@ -256,11 +256,11 @@ * @param object2 The second object to pass when calling the selector on the * target * @param repeats Whether the timer repeats after it has been executed * @return An initialized timer */ -- initWithFireDate: (OFDate*)fireDate +- initWithFireDate: (OFDate *)fireDate interval: (of_time_interval_t)interval target: (id)target selector: (SEL)selector object: (nullable id)object1 object: (nullable id)object2 @@ -276,11 +276,11 @@ * a repeating timer * @param repeats Whether the timer repeats after it has been executed * @param block The block to invoke when the timer fires * @return An initialized timer */ -- initWithFireDate: (OFDate*)fireDate +- initWithFireDate: (OFDate *)fireDate interval: (of_time_interval_t)interval repeats: (bool)repeats block: (of_timer_block_t)block; #endif @@ -293,11 +293,11 @@ /*! * @brief Returns the next date at which the timer will fire. * * @return The next date at which the timer will fire */ -- (OFDate*)fireDate; +- (OFDate *)fireDate; /*! * @brief Sets the next date at which the timer will fire. * * If the timer is already scheduled in a run loop, it will be rescheduled. @@ -305,11 +305,11 @@ * preferable to reschedule instead of invalidating the timer and creating a * new one. * * @param fireDate The next date at which the timer will fire */ -- (void)setFireDate: (OFDate*)fireDate; +- (void)setFireDate: (OFDate *)fireDate; /*! * @brief Invalidates the timer, preventing it from firing. */ - (void)invalidate;