File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ where
295
295
{
296
296
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
297
297
f. debug_list ( )
298
- . entries ( self . set1 . difference ( & self . set2 ) )
298
+ . entries ( self . set1 . difference ( self . set2 ) )
299
299
. finish ( )
300
300
}
301
301
}
@@ -346,7 +346,7 @@ where
346
346
{
347
347
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
348
348
f. debug_list ( )
349
- . entries ( self . set1 . intersection ( & self . set2 ) )
349
+ . entries ( self . set1 . intersection ( self . set2 ) )
350
350
. finish ( )
351
351
}
352
352
}
@@ -397,7 +397,7 @@ where
397
397
{
398
398
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
399
399
f. debug_list ( )
400
- . entries ( self . set1 . symmetric_difference ( & self . set2 ) )
400
+ . entries ( self . set1 . symmetric_difference ( self . set2 ) )
401
401
. finish ( )
402
402
}
403
403
}
@@ -447,7 +447,7 @@ where
447
447
S2 : BuildHasher ,
448
448
{
449
449
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
450
- f. debug_list ( ) . entries ( self . set1 . union ( & self . set2 ) ) . finish ( )
450
+ f. debug_list ( ) . entries ( self . set1 . union ( self . set2 ) ) . finish ( )
451
451
}
452
452
}
453
453
You can’t perform that action at this time.
0 commit comments