Merge branch '2.6.x' into 2.7.x

This commit is contained in:
Phillip Webb
2022-10-20 17:04:37 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ import java.lang.annotation.Target;
*
* @author Stephane Nicoll
*/
@Target({ ElementType.PARAMETER })
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DefaultValue {

View File

@@ -40,7 +40,7 @@ import java.lang.annotation.Target;
* @since 2.2.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.PARAMETER })
@Target(ElementType.PARAMETER)
@Documented
public @interface DefaultValue {

View File

@@ -31,7 +31,7 @@ import java.lang.annotation.Target;
* @since 2.4.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.PARAMETER })
@Target(ElementType.PARAMETER)
@Documented
public @interface Name {