Update debugConfigurationManager.ts

This commit is contained in:
Meai1 2016-08-03 22:00:48 +02:00 committed by GitHub
parent 11e16d7c64
commit 39891e39b6

View file

@ -297,7 +297,7 @@ export class ConfigurationManager implements debug.IConfigurationManager {
const factory: { (): TPromise<any> }[] = Object.keys(interactiveVariablesToSubstitutes).map(interactiveVariable => {
return () => {
var commandId = null;
let commandId = null;
if (this.adapter !== null) {
commandId = this.adapter.variables ? this.adapter.variables[interactiveVariable] : null;
}