@@ -30,12 +30,12 @@ */ @interface OFHTTPResponse: OFStream { of_http_request_protocol_version_t _protocolVersion; short _statusCode; - OFDictionary OF_GENERIC(OFString*, OFString*) *_headers; - OFArray OF_GENERIC(OFHTTPCookie*) *_cookies; + OFDictionary OF_GENERIC(OFString *, OFString *) *_headers; + OFArray OF_GENERIC(OFHTTPCookie *) *_cookies; } /*! * The status code of the reply to the HTTP request. */ @@ -43,17 +43,17 @@ /*! * The headers of the reply to the HTTP request. */ @property OF_NULLABLE_PROPERTY (nonatomic, copy) - OFDictionary OF_GENERIC(OFString*, OFString*) *headers; + OFDictionary OF_GENERIC(OFString *, OFString *) *headers; /*! * The cookies to set of the reply to the HTTP request. */ @property OF_NULLABLE_PROPERTY (nonatomic, copy) - OFArray OF_GENERIC(OFHTTPCookie*) *cookies; + OFArray OF_GENERIC(OFHTTPCookie *) *cookies; /*! * @brief Sets the protocol version of the HTTP request reply. * * @param protocolVersion The protocol version of the HTTP request reply @@ -71,31 +71,31 @@ * @brief Sets the protocol version of the HTTP request reply to the version * described by the specified string. * * @param string A string describing an HTTP version */ -- (void)setProtocolVersionFromString: (OFString*)string; +- (void)setProtocolVersionFromString: (OFString *)string; /*! * @brief Returns the protocol version of the HTTP request reply as a string. * * @return The protocol version of the HTTP request reply as a string */ -- (OFString*)protocolVersionString; +- (OFString *)protocolVersionString; /*! * @brief Returns the reply as a string, trying to detect the encoding. * * @return The reply as a string */ -- (OFString*)string; +- (OFString *)string; /*! * @brief Returns the reply as a string, trying to detect the encoding and * falling back to the specified encoding if not detectable. * * @return The reply as a string */ -- (OFString*)stringWithEncoding: (of_string_encoding_t)encoding; +- (OFString *)stringWithEncoding: (of_string_encoding_t)encoding; @end OF_ASSUME_NONNULL_END