From 0ded169ecb1231770b5eb04e80367cd6d0ea6e36 Mon Sep 17 00:00:00 2001 From: sjaakd Date: Fri, 6 Feb 2015 20:49:09 +0100 Subject: [PATCH] #339 valid_date is not an error --- processor/src/main/java/org/mapstruct/ap/util/Message.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor/src/main/java/org/mapstruct/ap/util/Message.java b/processor/src/main/java/org/mapstruct/ap/util/Message.java index bf086eeed..3a71ada04 100644 --- a/processor/src/main/java/org/mapstruct/ap/util/Message.java +++ b/processor/src/main/java/org/mapstruct/ap/util/Message.java @@ -70,7 +70,7 @@ public enum Message { GENERAL_AMBIGIOUS_MAPPING_METHOD( "Ambiguous mapping methods found for mapping %s to %s: %s." ), GENERAL_AMBIGIOUS_FACTORY_METHOD( "Ambiguous mapping methods found for factorizing %s: %s." ), GENERAL_UNSUPPORTED_DATE_FORMAT_CHECK( "No dateFormat check is supported for types %s, %s" ), - GENERAL_VALID_DATE( "Given date format \"%s\" is valid." ), + GENERAL_VALID_DATE( "Given date format \"%s\" is valid.", Diagnostic.Kind.NOTE ), GENERAL_INVALID_DATE( "Given date format \"%s\" is invalid. Message: \"%s\"." ), RETRIEVAL_NO_INPUT_ARGS( "Can't generate mapping method with no input arguments." ),