diff options
Diffstat (limited to 'crates/whirl_server/src/net/network_property.rs')
| -rw-r--r-- | crates/whirl_server/src/net/network_property.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/crates/whirl_server/src/net/network_property.rs b/crates/whirl_server/src/net/network_property.rs index c8d9046..ef793bc 100644 --- a/crates/whirl_server/src/net/network_property.rs +++ b/crates/whirl_server/src/net/network_property.rs @@ -10,10 +10,5 @@ impl NetworkProperty { pub fn _new() -> Self { Self::default() } } impl Default for NetworkProperty { - fn default() -> Self { - Self { - prop_id: 0, - value: "".to_string(), - } - } + fn default() -> Self { Self { prop_id: 0, value: "".to_string() } } } |