Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions lib/src/collateral/pvss.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (C) 2025 Intel Corporation
// SPDX-License-Identifier: MIT

use crate::header::Header;
#[cfg(not(feature = "std"))]
use alloc::{fmt, string::String};
#[cfg(feature = "std")]
Expand Down Expand Up @@ -33,16 +32,6 @@ impl Default for PVSS {
}
}

impl PVSS {
pub fn from_header(_header: &Header) -> Self {
PVSS {
product: "XYZ".into(),
variant: "all".into(),
..PVSS::default()
}
}
}

#[cfg(feature = "std")]
impl From<&PVSS> for PathBuf {
fn from(pvss: &PVSS) -> Self {
Expand Down