From 8f2ab952f52f52103be65fb3b2391ebed23cb387 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 16 Aug 2018 17:19:25 +0200 Subject: [PATCH] Polish javadoc formatting --- .../boot/autoconfigure/condition/ConditionalOnProperty.java | 3 ++- .../boot/devtools/tunnel/server/HttpTunnelServer.java | 3 ++- .../boot/configurationprocessor/json/JSONObject.java | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.java index 2d71b4d690..692b528ffd 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.java @@ -36,7 +36,8 @@ import org.springframework.core.env.Environment; * should have. The table below shows when a condition matches according to the property * value and the {@link #havingValue()} attribute: * - * + *
+ * * * * diff --git a/spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/tunnel/server/HttpTunnelServer.java b/spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/tunnel/server/HttpTunnelServer.java index 8ac0c2d758..aef4681f66 100644 --- a/spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/tunnel/server/HttpTunnelServer.java +++ b/spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/tunnel/server/HttpTunnelServer.java @@ -68,7 +68,8 @@ import org.springframework.util.Assert; * Requests should be made using HTTP GET or POST (depending if there is a payload), with * any payload contained in the body. The following response codes can be returned from * the server: - *
Having values
Property Value{@code havingValue=""}
+ *
+ * * * * diff --git a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/json/JSONObject.java b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/json/JSONObject.java index caf1d47dab..43386a9584 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/json/JSONObject.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/json/JSONObject.java @@ -41,7 +41,7 @@ import java.util.Map; *
  • When the requested type is an int, other {@link Number} types will be coerced using * {@link Number#intValue() intValue}. Strings that can be coerced using * {@link Double#valueOf(String)} will be, and then cast to int. - *
  • When the requested type is a long, other {@link Number} types will + *
  • When the requested type is a long, other {@link Number} types will * be coerced using {@link Number#longValue() longValue}. Strings that can be coerced * using {@link Double#valueOf(String)} will be, and then cast to long. This two-step * conversion is lossy for very large values. For example, the string
  • Response Codes
    StatusMeaning