From 64b65cf8e401cb98d4ddfc8324cb6635ff6fc2ed Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Fri, 20 Mar 2020 08:55:18 +0100 Subject: [PATCH] fix bad argument processor --- src/vs/workbench/api/common/extHostNotebook.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vs/workbench/api/common/extHostNotebook.ts b/src/vs/workbench/api/common/extHostNotebook.ts index af5687ea166..b160a6d3394 100644 --- a/src/vs/workbench/api/common/extHostNotebook.ts +++ b/src/vs/workbench/api/common/extHostNotebook.ts @@ -469,9 +469,8 @@ export class ExtHostNotebookController implements ExtHostNotebookShape, ExtHostN } } } - - return arg; } + return arg; } }); }