TAMAYA-321: Fix javadocs
Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/a2bdb02a Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/a2bdb02a Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/a2bdb02a Branch: refs/heads/configjsr Commit: a2bdb02a8c699ab8a2c03e75122280bfeeddd6a4 Parents: 24e0913 Author: Phil Ottlinger <[email protected]> Authored: Mon Nov 27 21:47:05 2017 +0100 Committer: Phil Ottlinger <[email protected]> Committed: Mon Nov 27 21:47:05 2017 +0100 ---------------------------------------------------------------------- .../java/org/apache/tamaya/spi/ConfigurationBuilder.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a2bdb02a/code/api/src/main/java/org/apache/tamaya/spi/ConfigurationBuilder.java ---------------------------------------------------------------------- diff --git a/code/api/src/main/java/org/apache/tamaya/spi/ConfigurationBuilder.java b/code/api/src/main/java/org/apache/tamaya/spi/ConfigurationBuilder.java index a2b3257..3511abe 100644 --- a/code/api/src/main/java/org/apache/tamaya/spi/ConfigurationBuilder.java +++ b/code/api/src/main/java/org/apache/tamaya/spi/ConfigurationBuilder.java @@ -27,7 +27,7 @@ import java.util.List; import java.util.Map; /** - * A builder for creating new instance of {@link Configuration}. + * A builder for creating new instances of {@link Configuration}. * Builders can be obtained in exactly two ways: * <ol> * <li>By accessing a preinitialized builder from an existing {@link Configuration}, @@ -93,7 +93,7 @@ public interface ConfigurationBuilder { ConfigurationBuilder addPropertySources(Collection<PropertySource> propertySources); /** - * Add all registered (default) property sources to the context built. The sources are ordered + * Adds all registered (default) property sources to the context built. The sources are ordered * based on their ordinal values and added to the chain of property sources with * higher priority. * @return this builder, for chaining, never null. @@ -120,7 +120,7 @@ public interface ConfigurationBuilder { /** * Access the current chain of property sources. Items at the end of the list have - * precedence/more significance. + * precedence/higher significance. * * @return the property source chain, never {@code null}. */ @@ -128,7 +128,7 @@ public interface ConfigurationBuilder { /** * Access the current chain of property filters. Items at the end of the list have - * precedence/more significance. + * precedence/higher significance. * * @return the property filter chain, never {@code null}. */ @@ -219,7 +219,6 @@ public interface ConfigurationBuilder { */ ConfigurationBuilder addDefaultPropertyFilters(); - /** * Removes the given PropertyFilter instances, if existing. The order of the remaining * filters is preserved.
