From be906d84fe40752e66568c990ee3e33949e8ab15 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Fri, 4 Mar 2022 13:23:14 +0100 Subject: [PATCH] fix year off-by-one error Signed-off-by: Johan Haals --- plugins/catalog-backend/src/service/DefaultEntitiesCatalog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.ts b/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.ts index 1e681a4f43..eaa0ce0189 100644 --- a/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.ts +++ b/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.ts @@ -208,7 +208,7 @@ export class DefaultEntitiesCatalog implements EntitiesCatalog { // sure that all adopters have re-stitched their entities so that the new // targetRef field is present on them, and that they have stopped consuming // the now-removed old field - // TODO(jhaals): Remove this in April 2021 + // TODO(jhaals): Remove this in April 2022 for (const entity of entities) { if (entity.relations) { for (const relation of entity.relations as any) {