Commit 7cd59db1 authored by akrherz's avatar akrherz

Fixes to javadoc build warnings

Some small javadoc fixes to remove warnings during build
parent 6fc5a38a
...@@ -867,7 +867,7 @@ public class HttpSession extends LocalClientSession { ...@@ -867,7 +867,7 @@ public class HttpSession extends LocalClientSession {
* by the 'requests' attribute in the connection manager's Session Creation Response. * by the 'requests' attribute in the connection manager's Session Creation Response.
* However the client MAY make one additional request if it is to pause or terminate a session. * However the client MAY make one additional request if it is to pause or terminate a session.
* *
* @see <a href="http://www.xmpp.org/extensions/xep-0124.html#overactive">overactive</a>. * @see <a href="http://www.xmpp.org/extensions/xep-0124.html#overactive">overactive</a>
* @param isPoll true if the session is using polling. * @param isPoll true if the session is using polling.
* @throws HttpBindException if the connection has violated a facet of the HTTP binding * @throws HttpBindException if the connection has violated a facet of the HTTP binding
* protocol. * protocol.
......
...@@ -208,7 +208,7 @@ public class HttpClientWithTimeoutFeedFetcher extends AbstractFeedFetcher { ...@@ -208,7 +208,7 @@ public class HttpClientWithTimeoutFeedFetcher extends AbstractFeedFetcher {
* @param urlStr * @param urlStr
* @param method * @param method
* @param feed * @param feed
* @return * @return SyndFeedInfo
* @throws MalformedURLException * @throws MalformedURLException
*/ */
private SyndFeedInfo buildSyndFeedInfo(URL feedUrl, String urlStr, HttpMethod method, SyndFeed feed, int statusCode) throws MalformedURLException { private SyndFeedInfo buildSyndFeedInfo(URL feedUrl, String urlStr, HttpMethod method, SyndFeed feed, int statusCode) throws MalformedURLException {
...@@ -253,7 +253,7 @@ public class HttpClientWithTimeoutFeedFetcher extends AbstractFeedFetcher { ...@@ -253,7 +253,7 @@ public class HttpClientWithTimeoutFeedFetcher extends AbstractFeedFetcher {
/** /**
* @param urlStr * @param urlStr
* @param method * @param method
* @return * @return SyndFeed or None
* @throws IOException * @throws IOException
* @throws HttpException * @throws HttpException
* @throws FetcherException * @throws FetcherException
......
...@@ -158,7 +158,7 @@ public class XMPPDateTimeFormat { ...@@ -158,7 +158,7 @@ public class XMPPDateTimeFormat {
* CCYY-MM-DDThh:mm:ss.sssZ * CCYY-MM-DDThh:mm:ss.sssZ
* *
* @param date * @param date
* @return * @return String
*/ */
public static String format(Date date) { public static String format(Date date) {
return FAST_FORMAT.format(date); return FAST_FORMAT.format(date);
...@@ -170,7 +170,7 @@ public class XMPPDateTimeFormat { ...@@ -170,7 +170,7 @@ public class XMPPDateTimeFormat {
* CCYYMMDDThh:mm:ss * CCYYMMDDThh:mm:ss
* *
* @param date * @param date
* @return * @return String
*/ */
public static String formatOld(Date date) { public static String formatOld(Date date) {
return FAST_FORMAT_OLD.format(date); return FAST_FORMAT_OLD.format(date);
......
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