diff options
author | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-11-28 06:02:21 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-11-28 06:02:21 +0900 |
commit | d53ce7f8d282ec0e0cfdfad584ef3938a5e56c92 (patch) | |
tree | fbbbf621a3261e835fa3d8550a0b053238ee5e20 | |
parent | 106b7a39249c679736108261b9211fe593107184 (diff) | |
download | servo-d53ce7f8d282ec0e0cfdfad584ef3938a5e56c92.tar.gz servo-d53ce7f8d282ec0e0cfdfad584ef3938a5e56c92.zip |
Remove Node.eventtarget().
-rw-r--r-- | components/script/dom/node.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index a1d724e2a88..f1185d73fe6 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -1150,11 +1150,6 @@ impl Node { } #[inline] - pub fn eventtarget<'a>(&'a self) -> &'a EventTarget { - &self.eventtarget - } - - #[inline] pub fn layout_data(&self) -> Ref<Option<LayoutData>> { self.layout_data.borrow() } |