Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
9ffd8622
Commit
9ffd8622
authored
Jun 02, 2015
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix malformed Javadoc
See gh-3082
parent
f721862d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
10 deletions
+9
-10
pom.xml
spring-boot-dependencies/pom.xml
+1
-1
Restarter.java
...pringframework/boot/developertools/restart/Restarter.java
+1
-1
TunnelConnection.java
...k/boot/developertools/tunnel/client/TunnelConnection.java
+1
-1
HttpTunnelServer.java
...k/boot/developertools/tunnel/server/HttpTunnelServer.java
+6
-7
No files found.
spring-boot-dependencies/pom.xml
View file @
9ffd8622
...
...
@@ -1876,4 +1876,4 @@
<id>
integration-test
</id>
</profile>
</profiles>
</project>
</project>
\ No newline at end of file
spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/restart/Restarter.java
View file @
9ffd8622
...
...
@@ -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
,
...
...
spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/client/TunnelConnection.java
View file @
9ffd8622
...
...
@@ -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
...
...
spring-boot-developer-tools/src/main/java/org/springframework/boot/developertools/tunnel/server/HttpTunnelServer.java
View file @
9ffd8622
...
...
@@ -46,16 +46,16 @@ import org.springframework.util.Assert;
* <pre>
* [ CLIENT ] [ SERVER ]
* | (a) Initial empty request |
* |------------------------------
}
|
* |------------------------------
>
|
* | (b) Data I |
* --
}|------------------------------}|---}
* --
>|------------------------------>|--->
* | Response I (a) |
*
{--|<------------------------------|{
---
*
<--|<------------------------------|<
---
* | |
* | (c) Data II |
* --
}|------------------------------}|---}
* --
>|------------------------------>|--->
* | Response II (b) |
*
{--|{------------------------------|{
---
*
<--|<------------------------------|<
---
* . .
* . .
* </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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment