Skip to content

Commit

Permalink
Merge pull request #55 from dd105/master
Browse files Browse the repository at this point in the history
Extraneous semi-colons
  • Loading branch information
vronin committed Feb 14, 2013
2 parents 6625620 + 1019188 commit 6bc7da3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/HTTPConnection.m
Original file line number Diff line number Diff line change
Expand Up @@ -1977,7 +1977,7 @@ - (NSData *)preprocessResponse:(HTTPMessage *)response
* This method is called immediately prior to sending the response headers (for an error).
* This method adds standard header fields, and then converts the response to an NSData object.
**/
- (NSData *)preprocessErrorResponse:(HTTPMessage *)response;
- (NSData *)preprocessErrorResponse:(HTTPMessage *)response
{
HTTPLogTrace();

Expand Down Expand Up @@ -2493,7 +2493,7 @@ - (void)socket:(GCDAsyncSocket *)sock didWriteDataWithTag:(long)tag
/**
* Sent after the socket has been disconnected.
**/
- (void)socketDidDisconnect:(GCDAsyncSocket *)sock withError:(NSError *)err;
- (void)socketDidDisconnect:(GCDAsyncSocket *)sock withError:(NSError *)err
{
HTTPLogTrace();

Expand Down

0 comments on commit 6bc7da3

Please sign in to comment.