Skip to content

Commit d91f27e

Browse files
committed
Fix Javadoc @SInCE checkstle violations
Apply consistent `@Since` tags and retrofit the existing code using a best guess from the git history. Closes gh-17360
1 parent dc5c570 commit d91f27e

File tree

463 files changed

+687
-378
lines changed

Some content is hidden

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

463 files changed

+687
-378
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
* (wrappers for AuditEvent).
4242
*
4343
* @author Dave Syer
44+
* @since 1.0.0
4445
* @see AuditEventRepository
4546
*/
4647
@JsonInclude(Include.NON_EMPTY)

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2016 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,6 +24,7 @@
2424
*
2525
* @author Dave Syer
2626
* @author Vedran Pavic
27+
* @since 1.0.0
2728
*/
2829
public interface AuditEventRepository {
2930

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2017 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,6 +28,7 @@
2828
* @author Dave Syer
2929
* @author Phillip Webb
3030
* @author Vedran Pavic
31+
* @since 1.0.0
3132
*/
3233
public class InMemoryAuditEventRepository implements AuditEventRepository {
3334

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/audit/listener/AuditApplicationEvent.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* Spring {@link ApplicationEvent} to encapsulate {@link AuditEvent}s.
2828
*
2929
* @author Dave Syer
30+
* @since 1.0.0
3031
*/
3132
public class AuditApplicationEvent extends ApplicationEvent {
3233

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/audit/listener/AuditListener.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2016 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -29,6 +29,7 @@
2929
* @author Dave Syer
3030
* @author Stephane Nicoll
3131
* @author Vedran Pavic
32+
* @since 1.0.0
3233
*/
3334
public class AuditListener extends AbstractAuditListener {
3435

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ActuatorMetricWriter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* distinguish it from others that might be installed by the user).
3131
*
3232
* @author Dave Syer
33+
* @since 1.3.0
3334
*/
3435
@Qualifier
3536
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.TYPE, ElementType.ANNOTATION_TYPE })

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/AuditAutoConfiguration.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
*
3838
* @author Dave Syer
3939
* @author Vedran Pavic
40+
* @since 1.0.0
4041
*/
4142
@Configuration
4243
public class AuditAutoConfiguration {

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/CrshAutoConfiguration.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
*
115115
* @author Christian Dupuis
116116
* @author Matt Benson
117+
* @since 1.0.0
117118
* @see ShellProperties
118119
* @deprecated as of 1.5 since CRaSH is not actively maintained
119120
*/

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
* @author Eddú Meléndez
7878
* @author Meang Akira Tanaka
7979
* @author Ben Hale
80+
* @since 1.0.0
8081
*/
8182
@Configuration
8283
@AutoConfigureAfter({ FlywayAutoConfiguration.class, LiquibaseAutoConfiguration.class })

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointMBeanExportAutoConfiguration.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
*
5151
* @author Christian Dupuis
5252
* @author Andy Wilkinson
53+
* @since 1.0.0
5354
*/
5455
@Configuration
5556
@Conditional(JmxEnabledCondition.class)

0 commit comments

Comments
 (0)