aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/identityhub.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2021-12-02 17:05:19 -0500
committerJosh Matthews <josh@joshmatthews.net>2021-12-02 17:05:19 -0500
commit898f66bcd009187a4173cbcf8f566f2594cb7c57 (patch)
treeeb95cf2b3924b5d14bb11aae1dc7532f740ea7f4 /components/script/dom/identityhub.rs
parente46d952efdf8c3c0a10cec35c22636d750347c56 (diff)
downloadservo-898f66bcd009187a4173cbcf8f566f2594cb7c57.tar.gz
servo-898f66bcd009187a4173cbcf8f566f2594cb7c57.zip
Update rustc.
Diffstat (limited to 'components/script/dom/identityhub.rs')
-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")]