Skip to content

Commit

Permalink
Fixed braces formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
belkevich committed May 21, 2014
1 parent 5ccba8d commit d4562ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Classes/APContact.m
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
}
Expand Down

0 comments on commit d4562ff

Please sign in to comment.