]> git.proxmox.com Git - rustc.git/blobdiff - src/librustc/dep_graph/graph.rs
New upstream version 1.19.0+dfsg1
[rustc.git] / src / librustc / dep_graph / graph.rs
index 8be5d4327e72ec2c134e7746ecaa11985fc69b3c..18eb4e5d0ad73474f292d030f3fdf7e1ce518804 100644 (file)
@@ -117,12 +117,6 @@ impl DepGraph {
         }
     }
 
-    pub fn write(&self, v: DepNode<DefId>) {
-        if self.data.thread.is_enqueue_enabled() {
-            self.data.thread.enqueue(DepMessage::Write(v));
-        }
-    }
-
     /// Indicates that a previous work product exists for `v`. This is
     /// invoked during initial start-up based on what nodes are clean
     /// (and what files exist in the incr. directory).