From e4839fce5d03580fe68b293c879e6179ddfb59be Mon Sep 17 00:00:00 2001 From: Filip Hrisafov Date: Sat, 18 Nov 2017 09:34:25 +0100 Subject: [PATCH] #1333 Add since tags for unmappedSourcePolicy() --- core-common/src/main/java/org/mapstruct/Mapper.java | 2 ++ core-common/src/main/java/org/mapstruct/MapperConfig.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/core-common/src/main/java/org/mapstruct/Mapper.java b/core-common/src/main/java/org/mapstruct/Mapper.java index c01cf9686..bb92a58d2 100644 --- a/core-common/src/main/java/org/mapstruct/Mapper.java +++ b/core-common/src/main/java/org/mapstruct/Mapper.java @@ -60,6 +60,8 @@ public @interface Mapper { * configuration set by {@link #config() } * * @return The reporting policy for unmapped source properties. + * + * @since 1.3 */ ReportingPolicy unmappedSourcePolicy() default ReportingPolicy.IGNORE; diff --git a/core-common/src/main/java/org/mapstruct/MapperConfig.java b/core-common/src/main/java/org/mapstruct/MapperConfig.java index 343966e5a..e9bbec0aa 100644 --- a/core-common/src/main/java/org/mapstruct/MapperConfig.java +++ b/core-common/src/main/java/org/mapstruct/MapperConfig.java @@ -62,6 +62,8 @@ public @interface MapperConfig { * reported. * * @return The reporting policy for unmapped source properties. + * + * @since 1.3 */ ReportingPolicy unmappedSourcePolicy() default ReportingPolicy.IGNORE;