@@ -148,27 +148,27 @@ * @brief Returns the object for the given key or NULL if the key was not found. * * @param key The key whose object should be returned * @return The object for the given key or NULL if the key was not found */ -- (nullable void*)objectForKey: (void*)key; +- (nullable void *)objectForKey: (void *)key; /*! * @brief Sets an object for a key. * * @param key The key to set * @param object The object to set the key to */ -- (void)setObject: (void*)object - forKey: (void*)key; +- (void)setObject: (void *)object + forKey: (void *)key; /*! * @brief Removes the object for the specified key from the map table. * * @param key The key whose object should be removed */ -- (void)removeObjectForKey: (void*)key; +- (void)removeObjectForKey: (void *)key; /*! * @brief Removes all objects. */ - (void)removeAllObjects; @@ -178,37 +178,37 @@ * specified object. * * @param object The object which is checked for being in the map table * @return A boolean whether the map table contains the specified object */ -- (bool)containsObject: (nullable void*)object; +- (bool)containsObject: (nullable void *)object; /*! * @brief Checks whether the map table contains an object with the specified * address. * * @param object The object which is checked for being in the map table * @return A boolean whether the map table contains an object with the * specified address. */ -- (bool)containsObjectIdenticalTo: (nullable void*)object; +- (bool)containsObjectIdenticalTo: (nullable void *)object; /*! * @brief Returns an OFMapTableEnumerator to enumerate through the map table's * keys. * * @return An OFMapTableEnumerator to enumerate through the map table's keys */ -- (OFMapTableEnumerator*)keyEnumerator; +- (OFMapTableEnumerator *)keyEnumerator; /*! * @brief Returns an OFMapTableEnumerator to enumerate through the map table's * objects. * * @return An OFMapTableEnumerator to enumerate through the map table's objects */ -- (OFMapTableEnumerator*)objectEnumerator; +- (OFMapTableEnumerator *)objectEnumerator; #ifdef OF_HAVE_BLOCKS /*! * @brief Executes a block for each key / object pair. * @@ -245,15 +245,15 @@ /*! * @brief Returns the next object. * * @return The next object */ -- (void*)nextObject; +- (void *)nextObject; /*! * @brief Resets the enumerator, so the next call to @ref nextKey returns the * first key again. */ - (void)reset; @end OF_ASSUME_NONNULL_END