From ede18e0b9f935876f8e48c1f9b051f67a48cd24a Mon Sep 17 00:00:00 2001 From: Boyko Amarov Date: Mon, 4 May 2020 19:27:05 +0300 Subject: [PATCH] Remove comments, remove unneeded ValidateNested. --- __tests__/additionalProperties.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/__tests__/additionalProperties.ts b/__tests__/additionalProperties.ts index 16aa641..29ccf97 100644 --- a/__tests__/additionalProperties.ts +++ b/__tests__/additionalProperties.ts @@ -11,14 +11,10 @@ class User { // @ts-ignore: not referenced class Post { - // @ts-ignore - @ValidateNested({each: true}) - // @Matches(/w{10}/, {each: true}) @Type(() => { return String }) @MinLength(2, {each: true}) - // users: User[] userStatus: Map }