Skip to content

Commit

Permalink
Remove cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Sep 30, 2024
1 parent e459d88 commit 2c74eb8
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,6 @@ public class LiveUpdatesManagerProxy(private val managerProvider: () -> LiveUpda
dismissTimestamp = request.dismissalTimestamp
)
}

public suspend fun update(request: LiveUpdateRequest.List): List<LiveUpdateProxy> {
return this.manager.getAllActiveUpdates().filter { it.type == request.type }.map { LiveUpdateProxy(it) }
}

public suspend fun end(request: LiveUpdateRequest.List): List<LiveUpdateProxy> {
return this.manager.getAllActiveUpdates().filter { it.type == request.type }.map { LiveUpdateProxy(it) }
}
}

public class LiveUpdateProxy(private val liveUpdate: LiveUpdate): JsonSerializable {
Expand Down

0 comments on commit 2c74eb8

Please sign in to comment.