common: Move SignedKey::new_fallback out of unstable-pre-spec

This commit is contained in:
Kévin Commaille 2022-02-10 22:26:46 +01:00
parent cdf383cc45
commit 3813449b29
No known key found for this signature in database
GPG Key ID: DD507DAE96E8245C

View File

@ -97,7 +97,6 @@ impl SignedKey {
}
/// Creates a new fallback `SignedKey` with the given key and signatures.
#[cfg(feature = "unstable-pre-spec")]
pub fn new_fallback(key: Base64, signatures: SignedKeySignatures) -> Self {
Self { key, signatures, fallback: true }
}