From 3dc80e1cbbf81c73da5e6aa8ad566153f0866274 Mon Sep 17 00:00:00 2001 From: Hayden Ball Date: Mon, 18 Apr 2022 11:24:16 +0100 Subject: [PATCH] refactor(_DTXTimerTrampoline): Remove unused _timerDescription var --- DetoxSync/DetoxSync/Utils/_DTXTimerTrampoline.m | 2 -- 1 file changed, 2 deletions(-) diff --git a/DetoxSync/DetoxSync/Utils/_DTXTimerTrampoline.m b/DetoxSync/DetoxSync/Utils/_DTXTimerTrampoline.m index 2176f7e..72dd449 100644 --- a/DetoxSync/DetoxSync/Utils/_DTXTimerTrampoline.m +++ b/DetoxSync/DetoxSync/Utils/_DTXTimerTrampoline.m @@ -21,7 +21,6 @@ @implementation _DTXTimerTrampoline NSTimer* _timer; CFRunLoopTimerCallBack _callback; CFRunLoopRef _runLoop; - NSString* _timerDescription; NSTimeInterval _timeUntilFire; //CADisplayLink @@ -102,7 +101,6 @@ - (void)dealloc - (void)setTimer:(NSTimer*)timer { _timer = timer; - _timerDescription = [[timer debugDescription] copy]; objc_setAssociatedObject(timer, __DTXTimerTrampolineKey, self, OBJC_ASSOCIATION_RETAIN); #if DEBUG