Skip to content

Commit 477bb3a

Browse files
committed
Fix javadoc warnings.
1 parent e0f4813 commit 477bb3a

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

src/main/java/com/ning/http/client/AsyncHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public static enum STATE {
5555
*/
5656
CONTINUE,
5757
/**
58-
* Upgrade the protocol. When specified, the AsyncHttpProvider will try to invoke the {@link UpgradeHandler#onReady}
58+
* Upgrade the protocol.
5959
*/
6060
UPGRADE
6161
}

src/main/java/com/ning/http/client/UpgradeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
package com.ning.http.client;
1414

1515
/**
16-
* Invoked when an {@link AsyncHandler.STATE#UPGRADE} is returned. Currently the library only support {@link WebSocket}
16+
* Invoked when an {@link AsyncHandler.STATE#UPGRADE} is returned. Currently the library only support {@link com.ning.http.client.websocket.WebSocket}
1717
* as type.
1818
*
1919
* @param <T>

src/main/java/com/ning/http/client/filter/FilterContext.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ public HttpResponseStatus getResponseStatus() {
7373

7474
/**
7575
* Return the response {@link HttpResponseHeaders}
76-
* @return
7776
*/
7877
public HttpResponseHeaders getResponseHeaders() {
7978
return b.headers;

src/main/java/com/ning/http/client/websocket/WebSocket.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public interface WebSocket {
4141
* @param offset starting offset.
4242
* @param len length.
4343
* @param last flag indicating whether or not this is the last fragment.
44-
* @return
44+
* @return this.
4545
*/
4646
WebSocket stream(byte[] fragment, int offset, int len, boolean last);
4747

src/main/java/com/ning/http/client/websocket/WebSocketCloseCodeReasonListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
/**
1616
* Extend the normal close listener with one that support the WebSocket's code and reason.
17-
* @See http://tools.ietf.org/html/rfc6455#section-5.5.1
17+
* @see "http://tools.ietf.org/html/rfc6455#section-5.5.1"
1818
*/
1919
public interface WebSocketCloseCodeReasonListener {
2020

0 commit comments

Comments
 (0)