Commit 9ffd8622 authored by Phillip Webb's avatar Phillip Webb

Fix malformed Javadoc

See gh-3082
parent f721862d
......@@ -1876,4 +1876,4 @@
<id>integration-test</id>
</profile>
</profiles>
</project>
</project>
\ No newline at end of file
......@@ -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,
......
......@@ -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
......
......@@ -46,16 +46,16 @@ import org.springframework.util.Assert;
* <pre>
* [ CLIENT ] [ SERVER ]
* | (a) Initial empty request |
* |------------------------------}|
* |------------------------------&gt;|
* | (b) Data I |
* --}|------------------------------}|---}
* --&gt;|------------------------------&gt;|---&gt;
* | Response I (a) |
* {--|<------------------------------|{---
* &lt;--|&lt;------------------------------|&lt;---
* | |
* | (c) Data II |
* --}|------------------------------}|---}
* --&gt;|------------------------------&gt;|---&gt;
* | Response II (b) |
* {--|{------------------------------|{---
* &lt;--|&lt;------------------------------|&lt;---
* . .
* . .
* </pre>
......@@ -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:
* <p>
* <table>
* <table summary="Response Codes">
* <tr>
* <th>Status</th>
* <th>Meaning</th>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment