I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 38a1a96d authored by zzz's avatar zzz
Browse files

revert JobTiming being a clock shift listener, not needed

parent 99c9b30e
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ import net.i2p.util.Clock; ...@@ -16,7 +16,7 @@ import net.i2p.util.Clock;
* *
* For use by the router only. Not to be used by applications or plugins. * For use by the router only. Not to be used by applications or plugins.
*/ */
public class JobTiming implements Clock.ClockUpdateListener, RouterClock.ClockShiftListener { public class JobTiming implements Clock.ClockUpdateListener {
private volatile long _start; private volatile long _start;
private volatile long _actualStart; private volatile long _actualStart;
private volatile long _actualEnd; private volatile long _actualEnd;
...@@ -82,8 +82,4 @@ public class JobTiming implements Clock.ClockUpdateListener, RouterClock.ClockSh ...@@ -82,8 +82,4 @@ public class JobTiming implements Clock.ClockUpdateListener, RouterClock.ClockSh
if (_actualEnd != 0) if (_actualEnd != 0)
_actualEnd += delta; _actualEnd += delta;
} }
public void clockShift(long delta) {
offsetChanged(delta);
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment