Skip to content

Commit e6a68b3

Browse files
committed
Fix checkstyle javadoc issues
Fix checkstyle issues in javadoc following the spring-javaformat upgrade. See gh-13932
1 parent 7fc4556 commit e6a68b3

File tree

51 files changed

+110
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+110
-110
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/ExposeExcludePropertyEndpointFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* {@link EndpointFilter} that will filter endpoints based on {@code include} and
3737
* {@code exclude} properties.
3838
*
39-
* @param <E> The endpoint type
39+
* @param <E> the endpoint type
4040
* @author Phillip Webb
4141
* @since 2.0.0
4242
*/

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/MeterRegistryCustomizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* the registry.
2828
*
2929
* @author Jon Schneider
30-
* @param <T> The registry type to customize
30+
* @param <T> the registry type to customize
3131
* @since 2.0.0
3232
*/
3333
@FunctionalInterface

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/properties/PropertiesConfigAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* Base class for properties to config adapters.
2626
*
27-
* @param <T> The properties type
27+
* @param <T> the properties type
2828
* @author Phillip Webb
2929
* @author Nikolay Rybak
3030
* @since 2.0.0

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/properties/StepRegistryPropertiesConfigAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Base class for {@link StepRegistryProperties} to {@link StepRegistryConfig} adapters.
2525
*
26-
* @param <T> The properties type
26+
* @param <T> the properties type
2727
* @author Jon Schneider
2828
* @author Phillip Webb
2929
* @since 2.0.0

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/audit/AuditEvent.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ public class AuditEvent implements Serializable {
5555

5656
/**
5757
* Create a new audit event for the current time.
58-
* @param principal The user principal responsible
58+
* @param principal the user principal responsible
5959
* @param type the event type
60-
* @param data The event data
60+
* @param data the event data
6161
*/
6262
public AuditEvent(String principal, String type, Map<String, Object> data) {
6363
this(Instant.now(), principal, type, data);
@@ -66,20 +66,20 @@ public AuditEvent(String principal, String type, Map<String, Object> data) {
6666
/**
6767
* Create a new audit event for the current time from data provided as name-value
6868
* pairs.
69-
* @param principal The user principal responsible
69+
* @param principal the user principal responsible
7070
* @param type the event type
71-
* @param data The event data in the form 'key=value' or simply 'key'
71+
* @param data the event data in the form 'key=value' or simply 'key'
7272
*/
7373
public AuditEvent(String principal, String type, String... data) {
7474
this(Instant.now(), principal, type, convert(data));
7575
}
7676

7777
/**
7878
* Create a new audit event.
79-
* @param timestamp The date/time of the event
80-
* @param principal The user principal responsible
79+
* @param timestamp the date/time of the event
80+
* @param principal the user principal responsible
8181
* @param type the event type
82-
* @param data The event data
82+
* @param data the event data
8383
*/
8484
public AuditEvent(Instant timestamp, String principal, String type,
8585
Map<String, Object> data) {

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/AbstractExposableEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Abstract base class for {@link ExposableEndpoint} implementations.
2828
*
29-
* @param <O> The operation type.
29+
* @param <O> the operation type.
3030
* @author Phillip Webb
3131
* @since 2.0.0
3232
*/

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/AbstractDiscoveredEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Abstract base class for {@link ExposableEndpoint endpoints} discovered by a
2929
* {@link EndpointDiscoverer}.
3030
*
31-
* @param <O> The operation type
31+
* @param <O> the operation type
3232
* @author Phillip Webb
3333
* @since 2.0.0
3434
*/

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/DiscoveredEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* An {@link ExposableEndpoint endpoint} discovered by an {@link EndpointDiscoverer}.
2424
*
25-
* @param <O> The operation type
25+
* @param <O> the operation type
2626
* @author Phillip Webb
2727
* @since 2.0.0
2828
*/

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/DiscoveredOperationsFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* Factory to create an {@link Operation} for annotated methods on an
4141
* {@link Endpoint @Endpoint} or {@link EndpointExtension @EndpointExtension}.
4242
*
43-
* @param <O> The operation type
43+
* @param <O> the operation type
4444
* @author Andy Wilkinson
4545
* @author Stephane Nicoll
4646
* @author Phillip Webb

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/EndpointDiscoverer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
* {@link Endpoint @Endpoint} beans and {@link EndpointExtension @EndpointExtension} beans
5555
* in an application context.
5656
*
57-
* @param <E> The endpoint type
58-
* @param <O> The operation type
57+
* @param <E> the endpoint type
58+
* @param <O> the operation type
5959
* @author Andy Wilkinson
6060
* @author Stephane Nicoll
6161
* @author Phillip Webb

0 commit comments

Comments
 (0)