@@ -115,15 +115,15 @@ object ReferenceScheduler {
115115 private [this ] val reporterRef = if (reporter eq null ) s else reporter
116116
117117 override def execute (runnable : Runnable ): Unit =
118- s.execute(InterceptRunnable (runnable, reporterRef ))
118+ s.execute(InterceptRunnable (runnable, reporter ))
119119 override def reportFailure (t : Throwable ): Unit =
120120 reporterRef.reportFailure(t)
121121 override def scheduleOnce (initialDelay : Long , unit : TimeUnit , r : Runnable ): Cancelable =
122- s.scheduleOnce(initialDelay, unit, InterceptRunnable (r, reporterRef ))
122+ s.scheduleOnce(initialDelay, unit, InterceptRunnable (r, reporter ))
123123 override def scheduleWithFixedDelay (initialDelay : Long , delay : Long , unit : TimeUnit , r : Runnable ): Cancelable =
124- s.scheduleWithFixedDelay(initialDelay, delay, unit, InterceptRunnable (r, reporterRef ))
124+ s.scheduleWithFixedDelay(initialDelay, delay, unit, InterceptRunnable (r, reporter ))
125125 override def scheduleAtFixedRate (initialDelay : Long , period : Long , unit : TimeUnit , r : Runnable ): Cancelable =
126- s.scheduleAtFixedRate(initialDelay, period, unit, InterceptRunnable (r, reporterRef ))
126+ s.scheduleAtFixedRate(initialDelay, period, unit, InterceptRunnable (r, reporter ))
127127 override def clockRealTime (unit : TimeUnit ): Long =
128128 s.clockRealTime(unit)
129129 override def clockMonotonic (unit : TimeUnit ): Long =
0 commit comments