Skip to content

Commit

Permalink
Merge pull request #189 from michaelkirk/mkirk/fix-clippy
Browse files Browse the repository at this point in the history
Fix clippy: remove superfluous use statements
  • Loading branch information
michaelkirk authored Jan 11, 2024
2 parents 8501fed + 5c8a841 commit f0d96fd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
1 change: 0 additions & 1 deletion geozero-shp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ mod shp_reader;
mod shx_reader;

pub use crate::header::ShapeType;
pub use crate::property_processor::*;
pub use crate::reader::Reader;
pub use crate::shp_reader::NO_DATA;

Expand Down
2 changes: 0 additions & 2 deletions geozero/src/gpkg/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,3 @@
//! ```
mod geopackage;

pub use geopackage::*;
9 changes: 2 additions & 7 deletions geozero/src/postgis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,7 @@ mod postgis_sqlx;
/// # Ok(())
/// # }
///```
#[cfg(feature = "with-postgis-postgres")]
pub mod postgres {
pub use super::postgis_postgres::*;
}
pub mod postgres {}

/// PostGIS geometry type encoding/decoding for SQLx.
///
Expand Down Expand Up @@ -89,9 +86,7 @@ pub mod postgres {
/// # }
/// ```
#[cfg(feature = "with-postgis-sqlx")]
pub mod sqlx {
pub use super::postgis_sqlx::*;
}
pub mod sqlx {}

/// Postgis geometry type encoding for Diesel.
///
Expand Down

0 comments on commit f0d96fd

Please sign in to comment.