Skip to content

Commit

Permalink
Refactor ProviderError to remove unused Serde variant
Browse files Browse the repository at this point in the history
  • Loading branch information
johntaiko committed Jul 8, 2024
1 parent 050dfd9 commit 84f3b78
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions crates/storage/errors/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ pub type ProviderResult<Ok> = Result<Ok, ProviderError>;
/// Bundled errors variants thrown by various providers.
#[derive(Clone, Debug, thiserror_no_std::Error, PartialEq, Eq)]
pub enum ProviderError {
/// Serde error.
#[error("{0}")]
Serde(String),
/// Database error.
#[error(transparent)]
Database(#[from] crate::db::DatabaseError),
Expand Down

0 comments on commit 84f3b78

Please sign in to comment.