aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools_traits/lib.rs
diff options
context:
space:
mode:
authorTeymour Aldridge <teymour@reasoning.page>2022-08-04 00:13:36 +0800
committerTeymour Aldridge <teymour@reasoning.page>2022-08-04 00:13:36 +0800
commit3e5cd8815da2ef649658e45f949e29308d1bb853 (patch)
tree9e75f10566e8d589dad7238b235d3619c2c0b9a9 /components/devtools_traits/lib.rs
parentc23adde5a33348aa38f7c2ad22bf96d91dcc7b33 (diff)
downloadservo-3e5cd8815da2ef649658e45f949e29308d1bb853.tar.gz
servo-3e5cd8815da2ef649658e45f949e29308d1bb853.zip
Fix some Clippy lints.
Diffstat (limited to 'components/devtools_traits/lib.rs')
-rw-r--r--components/devtools_traits/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs
index dbdf255b71b..9abbf5d1cc9 100644
--- a/components/devtools_traits/lib.rs
+++ b/components/devtools_traits/lib.rs
@@ -334,7 +334,7 @@ pub enum NetworkEvent {
impl TimelineMarker {
pub fn start(name: String) -> StartedTimelineMarker {
StartedTimelineMarker {
- name: name,
+ name,
start_time: PreciseTime::now(),
start_stack: None,
}