mirror of
https://github.com/servo/servo.git
synced 2025-07-22 06:43:40 +01:00
clippy: Fix several warnings in components/devtools (#31501)
This commit is contained in:
parent
da873779b4
commit
3552bb2464
18 changed files with 85 additions and 86 deletions
|
@ -189,7 +189,7 @@ impl Actor for RootActor {
|
|||
.map(|target| {
|
||||
registry
|
||||
.find::<TabDescriptorActor>(target)
|
||||
.encodable(®istry)
|
||||
.encodable(registry)
|
||||
})
|
||||
.collect(),
|
||||
};
|
||||
|
@ -223,7 +223,7 @@ impl Actor for RootActor {
|
|||
let tab = registry.find::<TabDescriptorActor>(&self.tabs[0]);
|
||||
let reply = GetTabReply {
|
||||
from: self.name(),
|
||||
tab: tab.encodable(®istry),
|
||||
tab: tab.encodable(registry),
|
||||
};
|
||||
let _ = stream.write_json_packet(&reply);
|
||||
ActorMessageStatus::Processed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue