Skip to content

Commit

Permalink
Fixed getters to get results out of queue
Browse files Browse the repository at this point in the history
  • Loading branch information
vronin committed Feb 15, 2013
1 parent 6472080 commit bccfaa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/HTTPServer.m
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ - (NSString *)domain
result = domain;
});

return domain;
return result;
}

- (void)setDomain:(NSString *)value
Expand Down Expand Up @@ -308,7 +308,7 @@ - (NSString *)name
result = name;
});

return name;
return result;
}

- (NSString *)publishedName
Expand Down

0 comments on commit bccfaa3

Please sign in to comment.