diff --git a/serialization/typescript/json/src/jsonParseNode.ts b/serialization/typescript/json/src/jsonParseNode.ts index 4d46495b88..702aee7de7 100644 --- a/serialization/typescript/json/src/jsonParseNode.ts +++ b/serialization/typescript/json/src/jsonParseNode.ts @@ -17,7 +17,6 @@ export class JsonParseNode implements ParseNode { public getDateValue = (): Date => this._jsonNode as Date; public getCollectionOfPrimitiveValues = (): T[] | undefined => { return (this._jsonNode as unknown[]) - .map(x => new JsonParseNode(x)) .map(x => { const currentParseNode = new JsonParseNode(x); if(x instanceof Boolean) {