Skip to content

Commit

Permalink
Remove debug, unimplemented instead of todo
Browse files Browse the repository at this point in the history
  • Loading branch information
sgreenbury authored Jul 11, 2024
1 parent 4d40b14 commit c7f8cea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ impl SearchResults {

// TODO Handle multiple responses
if all_geom_files.len() > 1 {
todo!("Multiple geometries not yet supported");
unimplemented!("Multiple geometries not supported in current release");
}

let result = if data_request_spec.geometry.include_geoms {
Expand All @@ -380,7 +380,6 @@ impl SearchResults {
data_request_spec.region
);
}
debug!("{:#?}", data_request_spec.region.first().unwrap().bbox());
let geoms = get_geometries(
all_geom_files.iter().next().unwrap(),
data_request_spec
Expand Down

0 comments on commit c7f8cea

Please sign in to comment.