Skip to content

Commit

Permalink
Delete unused functions in TimelineDatasource.swift (#2037)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahsmartin committed May 8, 2024
1 parent 1f56fa1 commit e9a2d3e
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ actor TimelineDatasource {
}
}

func count() -> Int {
statuses.count
}

func reset() {
statuses = []
}
Expand All @@ -52,10 +48,6 @@ actor TimelineDatasource {
self.statuses = statuses
}

func append(_ status: Status) {
statuses.append(status)
}

func append(contentOf: [Status]) {
statuses.append(contentsOf: contentOf)
}
Expand Down

0 comments on commit e9a2d3e

Please sign in to comment.