common: Remove leftover feature gate

This commit is contained in:
Jonas Platte 2022-02-02 21:17:07 +01:00
parent f9c14eb128
commit c4bccfe17e
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

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