We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9bad5d + b4d373b commit 896bcedCopy full SHA for 896bced
Sources/DataSources/Differentiator.swift
@@ -74,7 +74,7 @@ fileprivate struct SectionAssociatedData {
74
extension SectionAssociatedData : CustomDebugStringConvertible {
75
fileprivate var debugDescription: String {
76
get {
77
- return "\(event), \(indexAfterDelete)"
+ return "\(event), \(String(describing: indexAfterDelete))"
78
}
79
80
@@ -94,7 +94,7 @@ fileprivate struct ItemAssociatedData {
94
extension ItemAssociatedData : CustomDebugStringConvertible {
95
96
97
- return "\(event) \(indexAfterDelete)"
+ return "\(event) \(String(describing: indexAfterDelete))"
98
99
100
0 commit comments