diff options
author | HampusM <hampus@hampusmat.com> | 2023-08-17 22:37:48 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-08-17 22:37:48 +0200 |
commit | 055a98aec1fe534d78414d630ab5ba2b789cba64 (patch) | |
tree | ed6365fb47f6e6407cffe7ed3b05d08e075002c8 /src/dependency_history.rs | |
parent | 586aba5c8c64226f1be266820db02391ac43359b (diff) |
refactor: remove useless Sealed impl for DependencyHistory
Diffstat (limited to 'src/dependency_history.rs')
-rw-r--r-- | src/dependency_history.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/dependency_history.rs b/src/dependency_history.rs index d0356c0..6c02b5c 100644 --- a/src/dependency_history.rs +++ b/src/dependency_history.rs @@ -94,13 +94,6 @@ impl Display for DependencyHistory } } -impl private::Sealed for DependencyHistory {} - -pub(crate) mod private -{ - pub trait Sealed {} -} - #[cfg(test)] mod tests { |