Эх сурвалжийг харах

Merge pull request #938 from umi-eng/lint/shorthand-struct-init

Lint: use shorthand struct initialization
Dario Nieuwenhuis 10 сар өмнө
parent
commit
a2a0dfb2c3
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      src/wire/ip.rs

+ 1 - 1
src/wire/ip.rs

@@ -391,7 +391,7 @@ pub struct Endpoint {
 impl Endpoint {
     /// Create an endpoint address from given address and port.
     pub const fn new(addr: Address, port: u16) -> Endpoint {
-        Endpoint { addr: addr, port }
+        Endpoint { addr, port }
     }
 }