File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ impl<'a> IntoIterator for &'a Dictionary {
5757
5858impl PartialEq for Dictionary {
5959 fn eq ( & self , other : & Self ) -> bool {
60- self . mt . root ( ) == other. mt . root ( ) && self . mt . root ( ) == other . mt . root ( )
60+ self . mt . root ( ) == other. mt . root ( )
6161 }
6262}
6363impl Eq for Dictionary { }
@@ -108,7 +108,7 @@ impl Set {
108108
109109impl PartialEq for Set {
110110 fn eq ( & self , other : & Self ) -> bool {
111- self . mt . root ( ) == other. mt . root ( ) && self . mt . root ( ) == other . mt . root ( )
111+ self . mt . root ( ) == other. mt . root ( )
112112 }
113113}
114114impl Eq for Set { }
@@ -153,7 +153,7 @@ impl Array {
153153
154154impl PartialEq for Array {
155155 fn eq ( & self , other : & Self ) -> bool {
156- self . mt . root ( ) == other. mt . root ( ) && self . mt . root ( ) == other . mt . root ( )
156+ self . mt . root ( ) == other. mt . root ( )
157157 }
158158}
159159impl Eq for Array { }
You can’t perform that action at this time.
0 commit comments