This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git
commit 2585dbb9bcf1acce473c42225ce4e28f56b9493a Author: sseifert <[email protected]> AuthorDate: Thu Feb 14 12:14:24 2019 +0100 SLING-8275 clarify documentation of ConfigurationBuilder.asValueMap() method --- src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java b/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java index b93ed82..1027141 100644 --- a/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java +++ b/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java @@ -60,13 +60,13 @@ public interface ConfigurationBuilder { /** * Get configuration as singleton resource and return its properties as value map. - * @return Value map. Map is empty if content resource or configuration cannot be found. + * @return Value map. If content resource or configuration cannot be found the map is empty unless default or configuration override values are present for this configuration. */ @NotNull ValueMap asValueMap(); /** * Get collection of configuration resources with their properties mapped to the given annotation class. - * @return Collection of value map. Is empty if content resource or configuration cannot be found. + * @return Collection of value maps. Is empty if content resource or configuration cannot be found. */ @NotNull Collection<ValueMap> asValueMapCollection();
