/** Removes this entry from any list it belongs to. Returns the receiver. */
 final InternalJob remove() {
   if (next != null) next.setPrevious(previous);
   if (previous != null) previous.setNext(next);
   next = previous = null;
   return this;
 }