From 773f96d65f46ff561cbc178c04228c7dd72268cb Mon Sep 17 00:00:00 2001 From: Peter van Gulik Date: Fri, 7 Aug 2020 12:04:59 +0200 Subject: [PATCH] Remove debugger statement --- src/lib/vlocity/datapackLookupService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/vlocity/datapackLookupService.ts b/src/lib/vlocity/datapackLookupService.ts index b211d30f..5f6e6907 100644 --- a/src/lib/vlocity/datapackLookupService.ts +++ b/src/lib/vlocity/datapackLookupService.ts @@ -209,9 +209,9 @@ export class DatapackLookupService implements DependencyResolver { private buildLookupKey(sobjectType: string, fields: Array, data: object): string | undefined { const values = fields.map(field => data[field]).filter(v => v !== undefined && v !== null); - if (!values.length) { - debugger; - } + // if (!values.length) { + // debugger; + // } // As opposed to querying lookup keys should not contain a VLocity package namespace as they // are org independent, as such we replace the namespace; if present back with the place holder return values.length ? `${sobjectType}/${values.join('/')}`.replace(this.vlocityNamespace, '%vlocity_namespace%') : undefined;