From 648dcaf0dce9f8fad5bc05b28dc1f27c5e285c9e Mon Sep 17 00:00:00 2001 From: Gunnar Morling Date: Sun, 30 Oct 2016 18:34:04 +0100 Subject: [PATCH] #787 Adding review remark --- readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e94b8825e..db7a69091 100644 --- a/readme.md +++ b/readme.md @@ -39,7 +39,9 @@ Compared to mapping frameworks working at runtime MapStruct offers the following * Fast execution by using plain method invocations instead of reflection * Compile-time type safety: Only objects and attributes mapping to each other can be mapped, no accidental mapping of an order entity into a customer DTO etc. * Self-contained code, no runtime dependencies -* Clear error-reports at build time if mappings are incorrect and incomplete +* Clear error-reports at build time if + * mappings are incomplete (not all target properties are mapped) + * mappings are incorrect (cannot find a proper mapping method or type conversion) * Mapping code is easy to debug (or edited by hand e.g. in case of a bug in the generator) ## Requirements