Fix clippy warnings

imgbot
Dmitry Sharshakov 3 years ago
parent cf7237d0b9
commit 9939dbf119

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

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

Loading…
Cancel
Save