Skip to content

Commit 4d9a88d

Browse files
client/dbus: Remove unused PartialEq impl
1 parent 43795a8 commit 4d9a88d

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

client/src/dbus/api/secret.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,6 @@ pub struct DBusSecret<'a> {
2828
pub(crate) content_type: ContentType,
2929
}
3030

31-
impl PartialEq for DBusSecret<'_> {
32-
fn eq(&self, other: &Self) -> bool {
33-
self.parameters == other.parameters
34-
&& self.value == other.value
35-
&& self.content_type == other.content_type
36-
&& self.session.inner().path() == other.session.inner().path()
37-
}
38-
}
39-
4031
impl<'a> DBusSecret<'a> {
4132
/// Create a new plain (unencrypted) DBusSecret
4233
pub fn new(session: Arc<Session<'a>>, secret: impl Into<Secret>) -> Self {

0 commit comments

Comments
 (0)