mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-05 14:38:28 +00:00
26 lines
536 B
Swift
26 lines
536 B
Swift
|
|
/*
|
||
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||
|
|
*
|
||
|
|
* This source code is licensed under the MIT license found in the
|
||
|
|
* LICENSE file in the root directory of this source tree.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import IGListKit
|
||
|
|
import Foundation
|
||
|
|
|
||
|
|
final class SwipeActionSection: NSObject {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
extension SwipeActionSection: ListDiffable {
|
||
|
|
|
||
|
|
func diffIdentifier() -> NSObjectProtocol {
|
||
|
|
return self
|
||
|
|
}
|
||
|
|
|
||
|
|
func isEqual(toDiffableObject object: ListDiffable?) -> Bool {
|
||
|
|
return self === object ? true : self.isEqual(object)
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|