Skip to content

Commit b0f04b6

Browse files
author
Eric Amodio
committed
Fixing build
1 parent 46860a1 commit b0f04b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/platform/contextkey/common/contextkey.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export class ContextKeyEqualsExpr implements IContextKeyExpression {
409409

410410
export class ContextKeyInExpr implements IContextKeyExpression {
411411

412-
public static create(key: string, valueKey: string): ContextKeyExpression {
412+
public static create(key: string, valueKey: string): ContextKeyInExpr {
413413
return new ContextKeyInExpr(key, valueKey);
414414
}
415415

@@ -478,7 +478,7 @@ export class ContextKeyInExpr implements IContextKeyExpression {
478478

479479
export class ContextKeyNotInExpr implements IContextKeyExpression {
480480

481-
public static create(actual: ContextKeyInExpr): ContextKeyExpression {
481+
public static create(actual: ContextKeyInExpr): ContextKeyNotInExpr {
482482
return new ContextKeyNotInExpr(actual);
483483
}
484484

0 commit comments

Comments
 (0)