Skip to content

Commit

Permalink
fix: remove unused verify() on tax id trait
Browse files Browse the repository at this point in the history
  • Loading branch information
Mollemoll committed May 16, 2024
1 parent 33b1a4b commit b0cfb4e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ trait TaxIdType {
}
fn country_code_from_tax_country(&self, tax_country_code: &str) -> String;
fn verifier(&self) -> Box<dyn Verifier>;
fn verify(&self, tax_id: &TaxId) -> Result<Verification, VerificationError> {
self.verifier().verify(tax_id)
}
}

pub struct TaxId {
Expand Down

0 comments on commit b0cfb4e

Please sign in to comment.