Skip to content

Commit e1f6fb5

Browse files
committed
Remove @since from spring-boot-test-support's javadoc
Closes gh-37403
1 parent e8e5146 commit e1f6fb5

File tree

16 files changed

+12
-29
lines changed

16 files changed

+12
-29
lines changed

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/BuildOutput.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2023 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.
@@ -23,7 +23,6 @@
2323
* Provides access to build output locations in a build system and IDE agnostic manner.
2424
*
2525
* @author Andy Wilkinson
26-
* @since 2.2.0
2726
*/
2827
public class BuildOutput {
2928

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/classpath/ClassPathExclusions.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2023 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,7 +29,6 @@
2929
* Annotation used to exclude entries from the classpath.
3030
*
3131
* @author Andy Wilkinson
32-
* @since 1.5.0
3332
*/
3433
@Retention(RetentionPolicy.RUNTIME)
3534
@Target({ ElementType.TYPE, ElementType.METHOD })

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/classpath/ClassPathOverrides.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2023 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,7 +28,6 @@
2828
* Annotation used to override entries on the classpath.
2929
*
3030
* @author Andy Wilkinson
31-
* @since 1.5.0
3231
*/
3332
@Retention(RetentionPolicy.RUNTIME)
3433
@Target({ ElementType.TYPE, ElementType.METHOD })

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/classpath/ForkedClassPath.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2023 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.
@@ -30,7 +30,6 @@
3030
* {@link ClassPathOverrides} are needed, but just a copy of the classpath.
3131
*
3232
* @author Christoph Dreis
33-
* @since 2.4.0
3433
*/
3534
@Retention(RetentionPolicy.RUNTIME)
3635
@Target({ ElementType.TYPE, ElementType.METHOD })

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/compiler/TestCompiler.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2023 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.
@@ -36,7 +36,6 @@
3636
* @author Stephane Nicoll
3737
* @author Phillip Webb
3838
* @author Andy Wilkinson
39-
* @since 1.5.0
4039
*/
4140
public class TestCompiler {
4241

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/junit/DisabledOnOs.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* architecture check.
3030
*
3131
* @author Moritz Halbritter
32-
* @since 2.5.11
3332
*/
3433
@Target({ ElementType.TYPE, ElementType.METHOD })
3534
@Retention(RetentionPolicy.RUNTIME)

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/CapturedOutput.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2023 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.
@@ -23,7 +23,6 @@
2323
* @author Madhura Bhave
2424
* @author Phillip Webb
2525
* @author Andy Wilkinson
26-
* @since 2.2.0
2726
*/
2827
public interface CapturedOutput extends CharSequence {
2928

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/OutputCaptureExtension.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
* @author Phillip Webb
6363
* @author Andy Wilkinson
6464
* @author Sam Brannen
65-
* @since 2.2.0
6665
* @see CapturedOutput
6766
*/
6867
public class OutputCaptureExtension

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/testcontainers/CassandraContainer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2021 the original author or authors.
2+
* Copyright 2012-2023 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.
@@ -23,7 +23,6 @@
2323
* heavily contended environments such as CI.
2424
*
2525
* @author Andy Wilkinson
26-
* @since 2.4.10
2726
*/
2827
public class CassandraContainer extends org.testcontainers.containers.CassandraContainer<CassandraContainer> {
2928

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/testcontainers/DisabledIfDockerUnavailable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2023 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,7 +29,6 @@
2929
*
3030
* @author Andy Wilkinson
3131
* @author Phillip Webb
32-
* @since 2.3.0
3332
*/
3433
@Target({ ElementType.TYPE, ElementType.METHOD })
3534
@Retention(RetentionPolicy.RUNTIME)

0 commit comments

Comments
 (0)