@@ -50,14 +50,14 @@ } - (void)setProtocolVersion: (of_http_request_protocol_version_t)protocolVersion { if (protocolVersion.major != 1 || protocolVersion.minor > 1) - @throw [OFUnsupportedVersionException - exceptionWithVersion: [OFString stringWithFormat: @"%u.%u", - protocolVersion.major, - protocolVersion.minor]]; + @throw [OFUnsupportedVersionException exceptionWithVersion: + [OFString stringWithFormat: @"%u.%u", + protocolVersion.major, + protocolVersion.minor]]; _protocolVersion = protocolVersion; } - (of_http_request_protocol_version_t)protocolVersion @@ -89,11 +89,12 @@ objc_autoreleasePoolPop(pool); } - (OFString*)protocolVersionString { - return [OFString stringWithFormat: @"%u.%u", _protocolVersion.major, + return [OFString stringWithFormat: @"%u.%u", + _protocolVersion.major, _protocolVersion.minor]; } - (OFString*)string {