Removed dead code

This commit is contained in:
str4d
2013-12-04 03:50:26 +00:00
parent 1112fc8544
commit a3fa48dcbe

View File

@ -68,7 +68,6 @@ public class Clock implements Timestamper.UpdateListener {
* @param offsetMs the delta from System.currentTimeMillis() (NOT the delta from now())
*/
public synchronized void setOffset(long offsetMs, boolean force) {
if (false) return;
long delta = offsetMs - _offset;
if (!force) {
if ((offsetMs > MAX_OFFSET) || (offsetMs < 0 - MAX_OFFSET)) {