Differences From Artifact [00ce035b14]:
- File
src/exceptions/OFHTTPRequestFailedException.m
— part of check-in
[d9ddc4d06e]
at
2013-02-13 23:10:35
on branch trunk
— Don't cache the description of exceptions.
This was pretty pointless, as it's usually only used once. (user: js, size: 2032) [annotate] [blame] [check-ins using]
To Artifact [5bea1d2dbc]:
- File
src/exceptions/OFHTTPRequestFailedException.m
— part of check-in
[c5ef582958]
at
2013-03-04 17:20:15
on branch trunk
— Replace BOOL with bool.
The only places where BOOL is left are those where they are required by
the ABI. (user: js, size: 2038) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
86 87 88 89 90 91 92 |
return [OFString stringWithFormat:
@"A HTTP %s request in class %@ with URL %@ failed with code %d",
type, _inClass, [_request URL], [_reply statusCode]];
}
- (OFHTTPRequest*)request
{
| | | | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
return [OFString stringWithFormat:
@"A HTTP %s request in class %@ with URL %@ failed with code %d",
type, _inClass, [_request URL], [_reply statusCode]];
}
- (OFHTTPRequest*)request
{
OF_GETTER(_request, false)
}
- (OFHTTPRequestReply*)reply
{
OF_GETTER(_reply, false)
}
@end
|