Skip to content

Commit

Permalink
Fixing singleton def
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel committed Oct 13, 2009
1 parent 66555e0 commit 488cee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/GHNSInvocationProxy.m
Expand Up @@ -183,7 +183,7 @@ @implementation GHNSLogInvocationTracer
static GHNSLogInvocationTracer *gGHNSLogInvocationTracer = NULL;

+ (GHNSLogInvocationTracer *)shared {
@synchronized([self class]) {
@synchronized([GHNSLogInvocationTracer class]) {
if (gGHNSLogInvocationTracer == NULL) {
gGHNSLogInvocationTracer = [[GHNSLogInvocationTracer alloc] init];
}
Expand Down

0 comments on commit 488cee3

Please sign in to comment.