Skip to content

Commit

Permalink
Remove unused implementation blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
isbm committed Apr 14, 2024
1 parent 3b224a4 commit 2810b63
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/formatters/txtfmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ pub struct TextDataFormatter<'a> {
skip_unknown: bool,
}

impl<'a> TextDataFormatter<'a> {}

impl<'a> DataFormatter<'a> for TextDataFormatter<'a> {
fn format(&self) -> String {
let mut out = String::from("Package | Licences\n-------------------------------+---------\n");
Expand Down
2 changes: 0 additions & 2 deletions src/formatters/yamlfmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ pub struct YAMLDataFormatter<'a> {
skip_unknown: bool,
}

impl YAMLDataFormatter<'_> {}

impl<'a> DataFormatter<'a> for YAMLDataFormatter<'_> {
fn format(&self) -> String {
let mut out = String::new();
Expand Down

0 comments on commit 2810b63

Please sign in to comment.