From be90e8366d8dc6be59497871d7da867a161b33ff Mon Sep 17 00:00:00 2001 From: isidor Date: Mon, 24 Oct 2016 14:22:23 +0200 Subject: [PATCH] remove distinct workaround #12989 --- src/vs/workbench/parts/debug/common/debugModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/common/debugModel.ts b/src/vs/workbench/parts/debug/common/debugModel.ts index 0f3f88d6363..690441ce37d 100644 --- a/src/vs/workbench/parts/debug/common/debugModel.ts +++ b/src/vs/workbench/parts/debug/common/debugModel.ts @@ -212,7 +212,7 @@ export abstract class ExpressionContainer implements debug.IExpressionContainer const start = this.getChildrenInChunks ? this.startOfVariables : undefined; const count = this.getChildrenInChunks ? this.indexedVariables : undefined; return this.fetchVariables(start, count, 'indexed') - .then(variables => arrays.distinct(childrenArray.concat(variables), child => child.name)); + .then(variables => childrenArray.concat(variables)); }); } } -- GitLab