@@ -104,26 +104,26 @@ /*! * @brief Returns the current thread. * * @return The current thread */ -+ (OFThread*)currentThread; ++ (OFThread *)currentThread; /*! * @brief Returns the main thread. * * @return The main thread */ -+ (OFThread*)mainThread; ++ (OFThread *)mainThread; /*! * @brief Returns a dictionary to store thread-specific data, meaning it * returns a different dictionary for every thread. * * @return A dictionary to store thread-specific data. */ -+ (OFMutableDictionary*)threadDictionary; ++ (OFMutableDictionary *)threadDictionary; #endif /*! * @brief Suspends execution of the current thread for the specified time * interval. @@ -135,11 +135,11 @@ /*! * @brief Suspends execution of the current thread until the specified date. * * @param date The date to wait for */ -+ (void)sleepUntilDate: (OFDate*)date; ++ (void)sleepUntilDate: (OFDate *)date; /*! * @brief Yields a processor voluntarily and moves the thread to the end of the * queue for its priority. */ @@ -201,25 +201,25 @@ /*! * @brief Returns the run loop for the thread. * * @return The run loop for the thread */ -- (OFRunLoop*)runLoop; +- (OFRunLoop *)runLoop; /*! * @brief Returns the name of the thread or `nil` if none has been set. * * @return The name of the thread or nil if none has been set */ -- (nullable OFString*)name; +- (nullable OFString *)name; /*! * @brief Sets the name for the thread. * * @param name The name for the thread */ -- (void)setName: (nullable OFString*)name; +- (void)setName: (nullable OFString *)name; /*! * @brief Returns the priority of the thread. * * This is a value between -1.0 (meaning lowest priority that still schedules)