From 1be8a1375a0a5baaddc2965e741fc7bb2504675a Mon Sep 17 00:00:00 2001 From: Richard Frith-Macdonald Date: Fri, 29 May 2020 16:24:59 +0100 Subject: [PATCH] tidy whitespace --- Tests/base/NSThread/late_unregister.m | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Tests/base/NSThread/late_unregister.m b/Tests/base/NSThread/late_unregister.m index 38ae73e4b..edb2494f5 100644 --- a/Tests/base/NSThread/late_unregister.m +++ b/Tests/base/NSThread/late_unregister.m @@ -76,22 +76,22 @@ return done; } -- (void)waitUntilDate: (NSDate*)date +- (void) waitUntilDate: (NSDate*)date { [condition waitUntilDate: date]; } -- (void)lock +- (void) lock { [condition lock]; } -- (void)unlock +- (void) unlock { [condition unlock]; } -- (void)dealloc +- (void) dealloc { DESTROY(condition); [super dealloc]; @@ -118,7 +118,6 @@ int main(void) { pthread_t thr; pthread_attr_t attr; - void *ret; pthread_attr_init(&attr); pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); NSAutoreleasePool *arp = [NSAutoreleasePool new];