aboutsummaryrefslogtreecommitdiffstats
path: root/components/script
diff options
context:
space:
mode:
Diffstat (limited to 'components/script')
-rw-r--r--components/script/dom/identityhub.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/identityhub.rs b/components/script/dom/identityhub.rs
index 515e9f7e1b1..c4d997bcd6d 100644
--- a/components/script/dom/identityhub.rs
+++ b/components/script/dom/identityhub.rs
@@ -54,7 +54,7 @@ impl IdentityHub {
#[derive(Debug)]
pub struct Identities {
- surface: IdentityManager,
+ _surface: IdentityManager,
#[cfg(any(target_os = "linux", target_os = "windows"))]
vk_hub: IdentityHub,
#[cfg(target_os = "windows")]
@@ -69,7 +69,7 @@ pub struct Identities {
impl Identities {
pub fn new() -> Self {
Identities {
- surface: IdentityManager::default(),
+ _surface: IdentityManager::default(),
#[cfg(any(target_os = "linux", target_os = "windows"))]
vk_hub: IdentityHub::new(),
#[cfg(target_os = "windows")]