chore(agent): fix clippy needless_return for non-linux process collection
Some checks failed
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled

This commit is contained in:
jasonwitty 2025-08-24 12:52:56 -07:00
parent 8d48fa4c3b
commit ce59dd9dfe

View File

@ -452,6 +452,6 @@ pub async fn collect_processes_all(state: &AppState) -> ProcessesPayload {
let mut cache = state.cache_processes.lock().await;
cache.set(payload.clone());
}
return payload;
payload
}
}