Skip to content

Commit 6d81dfd

Browse files
Change methods to not be private
1 parent 05ea1f6 commit 6d81dfd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libs/vscode/notebooks/src/lib/controller/idl-notebook-execution-manager.class.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export class IDLNotebookExecutionManager {
196196
/**
197197
* Output to append
198198
*/
199-
private async _appendToCurrentCellOutput(content: string) {
199+
async _appendToCurrentCellOutput(content: string) {
200200
// log output
201201
IDL_LOGGER.log({
202202
log: IDL_NOTEBOOK_LOG,
@@ -454,7 +454,7 @@ export class IDLNotebookExecutionManager {
454454
/**
455455
* After launch and reset, commands we execute
456456
*/
457-
private async _postLaunchAndReset() {
457+
async _postLaunchAndReset() {
458458
if (!this.isStarted()) {
459459
return;
460460
}

0 commit comments

Comments
 (0)