From d4562ffecf18047b1ac8bdafa3dffb2d3e329f28 Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Wed, 21 May 2014 17:32:49 +0300 Subject: [PATCH] Fixed braces formatting --- Classes/APContact.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Classes/APContact.m b/Classes/APContact.m index 17a3460..123a042 100644 --- a/Classes/APContact.m +++ b/Classes/APContact.m @@ -71,10 +71,12 @@ - (id)initWithRecordRef:(ABRecordRef)recordRef fieldMask:(APContactField)fieldMa { _recordID = [NSNumber numberWithInteger:ABRecordGetRecordID(recordRef)]; } - if (fieldMask & APContactFieldCreationDate) { + if (fieldMask & APContactFieldCreationDate) + { _creationDate = [self dateProperty:kABPersonCreationDateProperty fromRecord:recordRef]; } - if (fieldMask & APContactFieldModificationDate) { + if (fieldMask & APContactFieldModificationDate) + { _modificationDate = [self dateProperty:kABPersonModificationDateProperty fromRecord:recordRef]; } }