On Wed, Feb 14, 2018 at 11:47 PM, Peter Levart <[email protected]> wrote:
>
> Although not strictly necessary for correctness, for the time being, it
> would be nice to be consistent in marking the Finalizer object "already
> finalized" in both places. Either set both next and prev to this or next to
> this and prev to null.
>
>
OK, now only next is ever self-linked.
this.prev = null;
this.next = this; // mark as finalized
