ObjFW  Diff

Differences From Artifact [f5a435fe1e]:

To Artifact [ed9a79856e]:


353
354
355
356
357
358
359



360
361
362
363
364
365
366

	return self;
}

- (bool)isEqual: (id)object
{
	OFDate *otherDate;




	if (![object isKindOfClass: [OFDate class]])
		return false;

	otherDate = object;

	if (otherDate->_seconds != _seconds)







>
>
>







353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369

	return self;
}

- (bool)isEqual: (id)object
{
	OFDate *otherDate;

	if (object == self)
		return true;

	if (![object isKindOfClass: [OFDate class]])
		return false;

	otherDate = object;

	if (otherDate->_seconds != _seconds)