Simplify method

This commit is contained in:
Gregory John Casamento 2019-10-24 18:51:21 -04:00
parent 2b3846e76d
commit 058762c8c5

View file

@ -106,9 +106,10 @@
NSString *result = nil;
NSDate *fromDate = [dateInterval startDate];
NSDate *toDate = [dateInterval endDate];
// Add formatting of NSDate here.
result = [NSString stringWithFormat: @"%@ - %@", fromDate, toDate];
return result;
return [NSString stringWithFormat: @"%@ - %@", fromDate, toDate];
}
@end