Delete unused functions in TimelineDatasource.swift

This commit is contained in:
Noah Martin 2024-04-25 17:09:26 -04:00 committed by GitHub
parent 6a7df1065d
commit 93b0342489
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)
}