Fix clippy warnings
This commit is contained in:
parent
cf7237d0b9
commit
9939dbf119
2 changed files with 2 additions and 2 deletions
|
@ -334,7 +334,7 @@ impl Application {
|
|||
}
|
||||
// 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?
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue