aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools/actors/root.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/devtools/actors/root.rs')
-rw-r--r--components/devtools/actors/root.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/components/devtools/actors/root.rs b/components/devtools/actors/root.rs
index efe58c2de71..cbe0dad1beb 100644
--- a/components/devtools/actors/root.rs
+++ b/components/devtools/actors/root.rs
@@ -52,7 +52,6 @@ struct GetRootReply {
#[derive(Serialize)]
struct ListTabsReply {
from: String,
- selected: u32,
tabs: Vec<TabDescriptorActorMsg>,
}
@@ -182,7 +181,6 @@ impl Actor for RootActor {
"listTabs" => {
let actor = ListTabsReply {
from: "root".to_owned(),
- selected: 0,
tabs: self
.tabs
.iter()