unused;
authorwenzelm
Tue, 01 Apr 2014 17:29:47 +0200
changeset 56353 ecbdfe30bf7f
parent 56352 abdc524db8b4
child 56354 a6f8c3566560
unused;
src/Pure/PIDE/protocol.scala
--- a/src/Pure/PIDE/protocol.scala	Tue Apr 01 17:26:32 2014 +0200
+++ b/src/Pure/PIDE/protocol.scala	Tue Apr 01 17:29:47 2014 +0200
@@ -48,10 +48,6 @@
     forks: Int,
     runs: Int)
   {
-    def + (that: Status): Status =
-      Status(touched || that.touched, accepted || that.accepted, failed || that.failed,
-        forks + that.forks, runs + that.runs)
-
     def is_unprocessed: Boolean = accepted && !failed && (!touched || (forks != 0 && runs == 0))
     def is_running: Boolean = runs != 0
     def is_finished: Boolean = !failed && touched && forks == 0 && runs == 0