Skip to content

Commit

Permalink
collect garbage as part of commit
Browse files Browse the repository at this point in the history
  • Loading branch information
canonic-epicure committed Jul 16, 2020
1 parent 747c61d commit b2995f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/chrono2/graph/Graph.ts
Expand Up @@ -108,7 +108,7 @@ export class ChronoGraph extends Base implements Owner {
this.nextTransaction = []

this.mark()
this.sweep()
// this.sweep()
}
//endregion

Expand Down Expand Up @@ -250,6 +250,8 @@ export class ChronoGraph extends Base implements Owner {
} else {
this.frozen = true
}

this.sweep()
}


Expand Down

0 comments on commit b2995f2

Please sign in to comment.