Skip to content

Commit

Permalink
Remove debugger statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Codeneos committed Aug 7, 2020
1 parent 4312f63 commit 773f96d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/vlocity/datapackLookupService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ export class DatapackLookupService implements DependencyResolver {

private buildLookupKey(sobjectType: string, fields: Array<string>, 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;
Expand Down

0 comments on commit 773f96d

Please sign in to comment.