From 224daa64bd3d8f34afaacd73ffc972153fe75eda Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 4 Sep 2019 09:30:54 +1000 Subject: Remove `LocalInternedString::get`. It has a single use, which is easily changed to something better. --- src/libsyntax_pos/symbol.rs | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/libsyntax_pos') diff --git a/src/libsyntax_pos/symbol.rs b/src/libsyntax_pos/symbol.rs index 42db2d21991..6c47ff823b9 100644 --- a/src/libsyntax_pos/symbol.rs +++ b/src/libsyntax_pos/symbol.rs @@ -1168,15 +1168,6 @@ impl LocalInternedString { string: unsafe { std::mem::transmute::<&str, &str>(string) } } } - - #[inline] - pub fn get(&self) -> &str { - // This returns a valid string since we ensure that `self` outlives the interner - // by creating the interner on a thread which outlives threads which can access it. - // This type cannot move to a thread which outlives the interner since it does - // not implement Send. - self.string - } } impl std::convert::AsRef for LocalInternedString -- cgit 1.4.1-3-g733a5