remove debug

This commit is contained in:
Robin Appelman 2020-05-02 17:25:45 +02:00
commit c9a71e3911
3 changed files with 13 additions and 6 deletions

View file

@ -24,11 +24,6 @@ impl<'ctx> TryIntoPlugin<'ctx> for NavTree {
#[native]
fn native_obj_new(_ctx: &IPluginContext, path: &CStr) -> NavTree {
println!("path: {}", path.to_str().unwrap());
println!(
"pwd: {}",
std::env::current_dir().unwrap().to_str().unwrap()
);
let data = read(path.to_str().unwrap()).unwrap();
NavTree(get_quad_tree(data).unwrap())
}