diff options
author | Aylur <[email protected]> | 2024-09-21 19:06:08 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-21 19:07:29 +0200 |
commit | ad8d3409fec4d7d4fd728f364a139947ff1185e3 (patch) | |
tree | 3e4ac867c3e1f543fec2f045a18b9d86c990a94f /core/gjs/src | |
parent | a819c41afcdde7b4bbe0ecf04dc8a84c87cc3c75 (diff) |
fix(Variable): remove explicit run_dispose
let gc collect them
Diffstat (limited to 'core/gjs/src')
-rw-r--r-- | core/gjs/src/variable.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/gjs/src/variable.ts b/core/gjs/src/variable.ts index 84f8cc5..8739ef6 100644 --- a/core/gjs/src/variable.ts +++ b/core/gjs/src/variable.ts @@ -101,7 +101,6 @@ class VariableWrapper<T> extends Function { drop() { this.variable.emit("dropped") - idle(() => this.variable.run_dispose()) } onDropped(callback: () => void) { |