mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 06:58:26 +00:00
Summary:
This method generated using the remodel generation script does not match with the header file.
The method declared in .h file is:
- (BOOL)isEqualToDiffableObject:(nullable id<IGListDiffable>)object;
But implementation generated in .m file is:
- (BOOL)isEqualToDiffableObject:(nullable id)object
{
return [self isEqual:object];
}
This fix is to generate the implementation as:
- (BOOL)isEqualToDiffableObject:(nullable id<IGListDiffable>)object
{
return [self isEqual:object];
}
Reviewed By: natestedman
Differential Revision: D27146804
fbshipit-source-id: f7d0d598e97e0ef47948b973ff38d9a319cd4b0d
|
||
|---|---|---|
| .. | ||
| Best Practices and FAQ.md | ||
| Generating your models using remodel.md | ||
| Getting Started.md | ||
| IGListDiffable and Equality.md | ||
| Installation.md | ||
| Migration.md | ||
| Modeling and Binding.md | ||
| VISION.md | ||
| Working with Core Data.md | ||
| Working with UICollectionView.md | ||