Skip to content

Commit 992c799

Browse files
committed
do not leave leftover comments
1 parent 8d7e2ac commit 992c799

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/client/repl/nativeRepl.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ export class NativeRepl implements Disposable {
7373
if (this.notebookDocument && nb.uri.toString() === this.notebookDocument.uri.toString()) {
7474
this.notebookDocument = undefined;
7575
this.newReplSession = true;
76-
// await this.context.globalState.update(NATIVE_REPL_URI_MEMENTO, undefined);
7776
updateWorkspaceStateValue<string | undefined>(NATIVE_REPL_URI_MEMENTO, undefined);
7877
}
7978
}),
@@ -172,7 +171,6 @@ export class NativeRepl implements Disposable {
172171
);
173172

174173
this.notebookDocument = notebookEditor.notebook;
175-
// await this.context.globalState.update(NATIVE_REPL_URI_MEMENTO, this.notebookDocument.uri.toString());
176174
updateWorkspaceStateValue<string | undefined>(NATIVE_REPL_URI_MEMENTO, this.notebookDocument.uri.toString());
177175

178176
if (this.notebookDocument) {
@@ -190,7 +188,6 @@ export class NativeRepl implements Disposable {
190188
*/
191189
private async cleanRepl(): Promise<void> {
192190
this.notebookDocument = undefined;
193-
// await this.context.globalState.update(NATIVE_REPL_URI_MEMENTO, undefined);
194191
updateWorkspaceStateValue<string | undefined>(NATIVE_REPL_URI_MEMENTO, undefined);
195192
}
196193
}

0 commit comments

Comments
 (0)