Remove leftover dbg!

This commit is contained in:
Olivier Goffart 2022-10-21 12:15:27 +02:00
parent ff504c0bdd
commit 70e8dedb75
2 changed files with 1 additions and 2 deletions

View file

@ -653,7 +653,6 @@ fn call_builtin_function(
}
BuiltinFunction::DarkColorScheme => match local_context.component_instance {
ComponentInstance::InstanceRef(component) => {
dbg!(&component.component_type.original);
Value::Bool(window_adapter_ref(component).unwrap().dark_color_scheme())
}
ComponentInstance::GlobalComponent(_) => {

View file

@ -134,7 +134,7 @@ pub(crate) fn completion_at(
} else {
match lsp_types::Url::make_relative(
&current_uri,
&lsp_types::Url::from_file_path(dbg!(file)).unwrap(),
&lsp_types::Url::from_file_path(file).unwrap(),
) {
Some(file) => file,
None => continue,