From 3d6a2272c95eaae262d8201b0ec15fcbcbabc781 Mon Sep 17 00:00:00 2001 From: Emily Jiang Date: Wed, 5 Jul 2017 21:53:32 +0100 Subject: [PATCH] #161 fix build Signed-off-by: Emily Jiang --- .../org/eclipse/microprofile/config/spi/ConfigBuilder.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/src/main/java/org/eclipse/microprofile/config/spi/ConfigBuilder.java b/api/src/main/java/org/eclipse/microprofile/config/spi/ConfigBuilder.java index 1a9162f8..3b7cb793 100644 --- a/api/src/main/java/org/eclipse/microprofile/config/spi/ConfigBuilder.java +++ b/api/src/main/java/org/eclipse/microprofile/config/spi/ConfigBuilder.java @@ -84,7 +84,10 @@ public interface ConfigBuilder { /** * Add the specified {@link Converter}. - * This method uses reflection to determine what type the converter is for. Custom converters should not be created as a lambda expression, as labmda expressions do not offer enough type information to the reflection API. Explicit implementation of a Converter interface is required for a custom converter. + * This method uses reflection to determine what type the converter is for. + * Custom converters should not be created as a lambda expression, + * as lambda expressions do not offer enough type information to the reflection API. + * Explicit implementation of a Converter interface is required for a custom converter. * * @param converters the converters * @return the ConfigBuilder with the added converters