debug: no need to null out everything in dispose of model

This commit is contained in:
isidor 2016-08-03 11:04:27 +02:00
parent 74652c014e
commit da607820bb

View file

@ -800,12 +800,6 @@ export class Model implements debug.IModel {
}
public dispose(): void {
this.threads = null;
this.breakpoints = null;
this.exceptionBreakpoints = null;
this.functionBreakpoints = null;
this.watchExpressions = null;
this.replElements = null;
this.toDispose = lifecycle.dispose(this.toDispose);
}
}