From 2ec0996a6f5b9027b49f4e2bff86ed2133529492 Mon Sep 17 00:00:00 2001 From: fidel Date: Sun, 2 Jun 2019 16:45:46 +0900 Subject: [PATCH 1/2] Fix typo in javadoc See gh-17044 --- .../endpoint/invoke/reflect/ReflectiveOperationInvoker.java | 2 +- .../filter/StandardAnnotationCustomizableTypeExcludeFilter.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java index fde9a17ee2..6422302967 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java @@ -48,7 +48,7 @@ public class ReflectiveOperationInvoker implements OperationInvoker { private final ParameterValueMapper parameterValueMapper; /** - * Creates a new {code ReflectiveOperationInvoker} that will invoke the given + * Creates a new {@code ReflectiveOperationInvoker} that will invoke the given * {@code method} on the given {@code target}. The given {@code parameterMapper} will * be used to map parameters to the required types and the given * {@code parameterNameMapper} will be used map parameters by name. diff --git a/spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/filter/StandardAnnotationCustomizableTypeExcludeFilter.java b/spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/filter/StandardAnnotationCustomizableTypeExcludeFilter.java index 10833be222..0a354d1403 100644 --- a/spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/filter/StandardAnnotationCustomizableTypeExcludeFilter.java +++ b/spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/filter/StandardAnnotationCustomizableTypeExcludeFilter.java @@ -28,7 +28,7 @@ import org.springframework.core.annotation.MergedAnnotations.SearchStrategy; /** * {@link AnnotationCustomizableTypeExcludeFilter} that can be used to any test annotation - * that uses the standard {code includeFilters}, {code excludeFilters} and + * that uses the standard {@code includeFilters}, {@code excludeFilters} and * {@code useDefaultFilters} attributes. * * @param the annotation type From 6a78995d611d45d82867ec57ae68d377ac956e24 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sun, 2 Jun 2019 09:54:30 +0200 Subject: [PATCH 2/2] Polish "Fix typo in javadoc" See gh-17044 --- .../endpoint/invoke/reflect/ReflectiveOperationInvoker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java index 6422302967..43f7f9f16a 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/reflect/ReflectiveOperationInvoker.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2018 the original author or authors. + * Copyright 2012-2019 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.