Fix clippy warnings

This commit is contained in:
Dmitry Sharshakov 2021-09-04 09:08:52 +03:00
parent cf7237d0b9
commit 9939dbf119
2 changed files with 2 additions and 2 deletions

View file

@ -334,7 +334,7 @@ pub async fn handle_debugger_message(&mut self, payload: helix_dap::Payload) {
}
// TODO: fetch breakpoints (in case we're attaching)
if let Ok(_) = debugger.configuration_done().await {
if debugger.configuration_done().await.is_ok() {
self.editor
.set_status("Debugged application started".to_owned());
}; // TODO: do we need to handle error?

View file

@ -471,7 +471,7 @@ pub fn dap_switch_stack_frame(cx: &mut Context) {
Some(thread_id) => thread_id,
None => {
cx.editor
.set_error(format!("No thread is currently active"));
.set_error("No thread is currently active".to_owned());
return;
}
};