style: Remove unused BorrowedAtom.

Differential Revision: https://phabricator.services.mozilla.com/D3159
This commit is contained in:
Cameron McCormack 2018-08-12 11:16:25 +00:00 committed by Emilio Cobos Álvarez
parent 9206283f7e
commit e305b5a1f8
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -49,10 +49,6 @@ pub struct Atom(*mut WeakAtom);
/// where `'a` is the lifetime of something that holds a strong reference to that atom.
pub struct WeakAtom(nsAtom);
/// A BorrowedAtom for Gecko is just a weak reference to a `nsAtom`, that
/// hasn't been bumped.
pub type BorrowedAtom<'a> = &'a WeakAtom;
impl Deref for Atom {
type Target = WeakAtom;