diff --git a/radicle/src/storage.rs b/radicle/src/storage.rs index edca9e88..95a5eeed 100644 --- a/radicle/src/storage.rs +++ b/radicle/src/storage.rs @@ -2,7 +2,6 @@ pub mod git; pub mod refs; use std::collections::hash_map; -use std::marker::PhantomData; use std::ops::Deref; use std::path::Path; use std::{fmt, io}; @@ -178,8 +177,6 @@ pub struct Remote { pub refs: SignedRefs, /// Whether this remote is a delegate for the project. pub delegate: bool, - /// Whether the remote is verified or not, ie. whether its signed refs were checked. - verified: PhantomData, } impl Remote { @@ -191,7 +188,6 @@ impl Remote { id, refs: refs.into(), delegate: false, - verified: PhantomData, } } } @@ -204,7 +200,6 @@ impl Remote { id: self.id, refs, delegate: self.delegate, - verified: PhantomData, }) } } @@ -215,7 +210,6 @@ impl Remote { id: self.id, refs: self.refs.unverified(), delegate: self.delegate, - verified: PhantomData, } } }