From 95390b24cbce8e6f85c9283cd10c0a4aad731a5e Mon Sep 17 00:00:00 2001 From: thunderhook <8238759+thunderhook@users.noreply.github.com> Date: Fri, 7 Jun 2024 22:11:51 +0200 Subject: [PATCH] #163 Added link to referenced issue of mapstruct repository --- .../inherit/InheritReverseWithExplicitInheritance.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testData/completion/inherit/InheritReverseWithExplicitInheritance.java b/testData/completion/inherit/InheritReverseWithExplicitInheritance.java index 670959a..5ce559e 100644 --- a/testData/completion/inherit/InheritReverseWithExplicitInheritance.java +++ b/testData/completion/inherit/InheritReverseWithExplicitInheritance.java @@ -39,7 +39,7 @@ abstract class CarMapperWithExplicitInheritance { @Mapping(target = "auditTrail", constant = "fixed") abstract CarEntity toCarEntityWithFixedAuditTrail(CarDto carDto); - // this method should not be considered. See issue #1013 + // this method should not be considered. See https://github.com/mapstruct/mapstruct/issues/1013 void toCarEntity(CarDto carDto, @MappingTarget CarEntity carEntity) { } }