Skip to content

Commit

Permalink
removed unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
giannis-rdx committed Jul 1, 2024
1 parent 2ecff44 commit 9e61459
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,6 @@ class IncomingRequestRepositoryImpl @Inject constructor(
}

// Put high priority item below any internal request and mobile connect requests
// val topQueueItem = requestQueue.peekFirst()
// if (topQueueItem is QueueItem.RequestItem && topQueueItem.incomingRequest.isInternal) {
// requestQueue.add(1, QueueItem.HighPriorityScreen)
// } else {
// requestQueue.addFirst(QueueItem.HighPriorityScreen)
// }
val index = requestQueue.indexOfFirst {
val item = it as? QueueItem.RequestItem
item != null && !item.incomingRequest.isInternal
Expand Down

0 comments on commit 9e61459

Please sign in to comment.