Skip to content

Polish javadoc comments #27925

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class JacksonProperties {
private Boolean defaultLeniency;

/**
* Strategy to use to to auto-detect constructor, and in particular behavior with
* Strategy to use to auto-detect constructor, and in particular behavior with
* single-argument constructors.
*/
private ConstructorDetectorStrategy constructorDetector;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@
import org.springframework.boot.logging.DeferredLogFactory;

/**
* Strategy class that can be used used to load {@link ConfigData} for a given
* {@link ConfigDataResource}. Implementations should be added as a
* {@code spring.factories} entries. The following constructor parameter types are
* supported:
* Strategy class that can be used to load {@link ConfigData} for a given
* {@link ConfigDataResource}. Implementations should be added as {@code spring.factories}
* entries. The following constructor parameter types are supported:
* <ul>
* <li>{@link Log} or {@link DeferredLogFactory} - if the loader needs deferred
* logging</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private ConfigDataLocation(boolean optional, String value, Origin origin) {
}

/**
* Return the the location is optional and should ignore
* Return if the location is optional and should ignore
* {@link ConfigDataNotFoundException}.
* @return if the location is optional
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2020 the original author or authors.
* Copyright 2012-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,7 +29,7 @@
import org.springframework.core.annotation.MergedAnnotations;

/**
* An {@AbstractInjectionFailureAnalyzer} for
* An {@link AbstractInjectionFailureAnalyzer} for
* {@link ConfigurationProperties @ConfigurationProperties} that are intended to use
* {@link ConstructorBinding constructor binding} but did not.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public interface Value extends CharSequence, InputStreamSource {
}

/**
* A single property file that was found when when the source was created.
* A single property file that was found when the source was created.
*/
private static final class PropertyFile {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ public AbstractObjectAssert<?, Object> processOfType(String type) {
}

/**
* Asserts for the the JSON content in the {@code io.buildpacks.lifecycle.metadata}
* label.
* Asserts for the JSON content in the {@code io.buildpacks.lifecycle.metadata} label.
*
* See <a href=
* "https://github.com/buildpacks/spec/blob/main/platform.md#iobuildpackslifecyclemetadata-json">the
Expand Down