Skip to content

Commit

Permalink
removing unneeded debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
timburks committed Jun 21, 2013
1 parent 460cf32 commit 8fc8093
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions objc/Nu.m
Expand Up @@ -11242,12 +11242,12 @@ @implementation NuTestHelper
+ (void) cycle
{
NuTestHelper *object = [[NuTestHelper alloc] init];
Class before = object->isa;
//Class before = object->isa;
objc_setAssociatedObject(object, @"number", @"123", OBJC_ASSOCIATION_RETAIN);
Class after = object->isa;
SEL cxx_destruct = sel_registerName(".cxx_destruct");
NSLog(@"class %@ %@", before, after);
NSLog(@"responds? %d", [object respondsToSelector:cxx_destruct]);
//Class after = object->isa;
//SEL cxx_destruct = sel_registerName(".cxx_destruct");
//NSLog(@"class %@ %@", before, after);
//NSLog(@"responds? %d", [object respondsToSelector:cxx_destruct]);
[object release];
}

Expand Down

0 comments on commit 8fc8093

Please sign in to comment.