Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 446030c

Browse files
committed
Fix warning in PFReceiptionist.
1 parent 74e3219 commit 446030c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ParseFacebookUtils/Internal/PFReceptionist.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ @implementation PFReceptionist {
3131
NSThread *_affinitizedThread;
3232
}
3333

34-
- (instancetype)initWithTarget:(NSObject *)newTarget thread:(NSThread *)thread {
35-
if (!newTarget) {
34+
- (instancetype)initWithTarget:(id)target thread:(NSThread *)thread {
35+
if (!target) {
3636
return nil;
3737
}
3838

39-
_target = newTarget;
39+
_target = target;
4040
_affinitizedThread = thread;
4141

4242
return self;

0 commit comments

Comments
 (0)