Skip to content

Commit

Permalink
UPD fixed delayer deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
deepnight committed Oct 30, 2024
1 parent ab55bd8 commit b291aca
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/dn/Process.hx
Original file line number Diff line number Diff line change
Expand Up @@ -654,20 +654,15 @@ class Process {
p.onDisposeCb();

// Tools
p.delayer.destroy();
p.udelayer.destroy();
p.cd.dispose();
p.ucd.dispose();
p.tw.destroy();
p.delayer.dispose(); p.delayer = null;
p.udelayer.dispose(); p.udelayer = null;
p.cd.dispose(); p.cd = null;
p.ucd.dispose(); p.ucd = null;
p.tw.destroy(); p.tw = null;

// Clean up
p.parent = null;
p.children = null;
p.cd = null;
p.ucd = null;
p.delayer = null;
p.udelayer = null;
p.tw = null;
#if heaps
p.root = null;
#end
Expand Down

0 comments on commit b291aca

Please sign in to comment.