Remove end date

This commit is contained in:
Gregory John Casamento 2019-10-23 11:01:15 -04:00
parent 2103216abc
commit f46219ca3f
2 changed files with 0 additions and 3 deletions

View file

@ -39,7 +39,6 @@ extern "C" {
{
NSTimeInterval _duration;
NSDate *_startDate;
NSDate *_endDate;
}
// Init

View file

@ -1,4 +1,3 @@
/* Implementation of class NSDateInterval
Copyright (C) 2019 Free Software Foundation, Inc.
@ -60,7 +59,6 @@
if(self != nil)
{
ASSIGNCOPY(_startDate, startDate);
ASSIGNCOPY(_endDate, endDate);
_duration = [endDate timeIntervalSinceDate: startDate];
}
return self;