From 9ffd8622f6cb0403cdeea9349e12bcf5d4a2c523 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 2 Jun 2015 00:49:42 -0700 Subject: [PATCH] Fix malformed Javadoc See gh-3082 --- spring-boot-dependencies/pom.xml | 2 +- .../boot/developertools/restart/Restarter.java | 2 +- .../tunnel/client/TunnelConnection.java | 2 +- .../tunnel/server/HttpTunnelServer.java | 13 ++++++------- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index a30530e91cf..0b9d4a35ab3 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -1876,4 +1876,4 @@ integration-test - + \ No newline at end of file diff --git a/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/restart/Restarter.java b/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/restart/Restarter.java index 90fc2a66901..3d548a0f9bb 100644 --- a/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/restart/Restarter.java +++ b/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/restart/Restarter.java @@ -111,7 +111,7 @@ public class Restarter { * @param thread the source thread * @param args the application arguments * @param forceReferenceCleanup if soft/weak reference cleanup should be forced - * @param initializer + * @param initializer the restart initializer * @see #initialize(String[]) */ protected Restarter(Thread thread, String[] args, boolean forceReferenceCleanup, diff --git a/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/client/TunnelConnection.java b/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/client/TunnelConnection.java index f885b2a1ee8..7873c1e89c2 100644 --- a/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/client/TunnelConnection.java +++ b/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/client/TunnelConnection.java @@ -31,7 +31,7 @@ public interface TunnelConnection { * Open the tunnel connection. * @param incomingChannel A {@link WritableByteChannel} that should be used to write * any incoming data received from the remote server. - * @param closeable + * @param closeable a closeable to call when the channel is closed * @return A {@link WritableByteChannel} that should be used to send any outgoing data * destined for the remote server * @throws Exception diff --git a/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/server/HttpTunnelServer.java b/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/server/HttpTunnelServer.java index 976109f45f0..891630ec078 100644 --- a/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/server/HttpTunnelServer.java +++ b/spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/server/HttpTunnelServer.java @@ -46,16 +46,16 @@ import org.springframework.util.Assert; *
  * [ CLIENT ]                      [ SERVER ]
  *     | (a) Initial empty request     |
- *     |------------------------------}|
+ *     |------------------------------>|
  *     | (b) Data I                    |
- *  --}|------------------------------}|---}
+ *  -->|------------------------------>|--->
  *     | Response I (a)                |
- *  {--|<------------------------------|{---
+ *  <--|<------------------------------|<---
  *     |                               |
  *     | (c) Data II                   |
- *  --}|------------------------------}|---}
+ *  -->|------------------------------>|--->
  *     | Response II (b)               |
- *  {--|{------------------------------|{---
+ *  <--|<------------------------------|<---
  *     .                               .
  *     .                               .
  * 
@@ -66,8 +66,7 @@ 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: - *

- * + *
* * *
StatusMeaning