IGListKit/Examples
Jian Chen c7c8f38638 Add <IGListDiffable> to isEqualToDiffableObject method argument type
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
2021-03-18 02:20:45 -07:00
..
Examples-iOS Add <IGListDiffable> to isEqualToDiffableObject method argument type 2021-03-18 02:20:45 -07:00
Examples-macOS udpate xcodeproj and example projects 2020-09-08 09:11:12 -07:00
Examples-tvOS fix example projects 2021-01-21 19:58:49 -08:00
.swiftlint.yml Minimum fixes for Xcode 9.3 build errors 2018-04-09 08:37:18 -07:00