commented unused function
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2023-05-15 13:24:55 +02:00
parent 0ad77342ea
commit 9a1f4f69dd

View File

@ -33,7 +33,7 @@ pub fn _dedup<T: Ord + PartialOrd>(list: &mut Vec<T>) -> usize {
list.len()
}
pub async fn sleep_ms(ms: u64) {
pub async fn _sleep_ms(ms: u64) {
sleep(Duration::from_millis(ms)).await;
}