From b0f04b60e52ecbfa5dfe846eb3eb9cfb322c6479 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 26 Aug 2020 02:48:41 -0400 Subject: [PATCH] Fixing build --- src/vs/platform/contextkey/common/contextkey.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/platform/contextkey/common/contextkey.ts b/src/vs/platform/contextkey/common/contextkey.ts index 6f0fb98af61..8cdc6954c0a 100644 --- a/src/vs/platform/contextkey/common/contextkey.ts +++ b/src/vs/platform/contextkey/common/contextkey.ts @@ -409,7 +409,7 @@ export class ContextKeyEqualsExpr implements IContextKeyExpression { export class ContextKeyInExpr implements IContextKeyExpression { - public static create(key: string, valueKey: string): ContextKeyExpression { + public static create(key: string, valueKey: string): ContextKeyInExpr { return new ContextKeyInExpr(key, valueKey); } @@ -478,7 +478,7 @@ export class ContextKeyInExpr implements IContextKeyExpression { export class ContextKeyNotInExpr implements IContextKeyExpression { - public static create(actual: ContextKeyInExpr): ContextKeyExpression { + public static create(actual: ContextKeyInExpr): ContextKeyNotInExpr { return new ContextKeyNotInExpr(actual); }