ObjFW  Diff

Differences From Artifact [1c2bd09aff]:

To Artifact [167800b2db]:


20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

static OFString *module = @"OFThread";

@interface TestThread: OFThread
@end

@implementation TestThread
- (id)run
{
	if ([object isEqual: @"foo"])
		return @"success";

	return nil;
}
@end







|







20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

static OFString *module = @"OFThread";

@interface TestThread: OFThread
@end

@implementation TestThread
- (id)main
{
	if ([object isEqual: @"foo"])
		return @"success";

	return nil;
}
@end