clean code with clippy
All checks were successful
CI/CD Pipeline / test (push) Successful in 2m30s

This commit is contained in:
2024-02-06 11:21:52 +01:00
parent c92d72c580
commit 1933b47e46
2 changed files with 15 additions and 35 deletions

View File

@ -140,6 +140,12 @@ impl PartialEq for LawBuilder {
}
}
impl Default for LawBuilder {
fn default() -> Self {
Self::new()
}
}
impl LawBuilder {
/// Creates a new law builder. Adds classifier for known law texts.
pub fn new() -> Self {