From 544c2d993a9612f3c451c77145d6b382cb17e6d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Thu, 22 Dec 2016 13:31:39 +0100 Subject: [PATCH] script: Remove unused function. --- components/script/dom/node.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index 3e2de9bfa8e..6a2ccea832f 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -426,10 +426,6 @@ impl Node { self.get_flag(HAS_DIRTY_DESCENDANTS) } - pub fn set_has_dirty_descendants(&self, state: bool) { - self.set_flag(HAS_DIRTY_DESCENDANTS, state) - } - pub fn rev_version(&self) { // The new version counter is 1 plus the max of the node's current version counter, // its descendants version, and the document's version. Normally, this will just be