Delete unused functions in TimelineDatasource.swift (#2037)

This commit is contained in:
Noah Martin 2024-05-08 01:38:36 -07:00 committed by GitHub
parent 1f56fa1b9b
commit e9a2d3e151
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,10 +32,6 @@ actor TimelineDatasource {
}
}
func count() -> Int {
statuses.count
}
func reset() {
statuses = []
}
@ -52,10 +48,6 @@ actor TimelineDatasource {
self.statuses = statuses
}
func append(_ status: Status) {
statuses.append(status)
}
func append(contentOf: [Status]) {
statuses.append(contentsOf: contentOf)
}