Skip to content

Commit 5a5ec98

Browse files
committed
Javadoc warning cleanup.
1 parent 4feede8 commit 5a5ec98

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

Flickr4Java/src/main/java/com/flickr4java/flickr/auth/AuthInterface.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ public Token getRequestToken(String callbackUrl) {
9898
*
9999
* @param oAuthRequestToken
100100
* the token from a {@link AuthInterface#getRequestToken} call.
101-
* @return
102101
*/
103102
public String getAuthorizationUrl(Token oAuthRequestToken, Permission permission) {
104103

@@ -115,7 +114,6 @@ public String getAuthorizationUrl(Token oAuthRequestToken, Permission permission
115114
* this is the token returned by the {@link AuthInterface#getRequestToken} call.
116115
* @param verifier
117116
* the Verifier created from the code entered by a user or passed back to a callback URL.
118-
* @return
119117
*/
120118
@SuppressWarnings("boxing")
121119
public Token getAccessToken(Token oAuthRequestToken, Verifier verifier) {
@@ -191,7 +189,6 @@ public Auth checkToken(String authToken, String tokenSecret) throws FlickrExcept
191189
* Calling this method will delete the auth token used to make the request.
192190
*
193191
* @param authToken
194-
* @return
195192
* @throws FlickrException
196193
* @see "http://www.flickr.com/services/api/flickr.auth.oauth.getAccessToken.html"
197194
*/
@@ -213,7 +210,6 @@ public Token exchangeAuthToken(String authToken) throws FlickrException {
213210
*
214211
* @param authToken
215212
* @param method
216-
* @return
217213
*/
218214
private Map<String, String> constructNonOAuthParameters(String authToken, String method) {
219215
// Use TreeMap so keys are automatically sorted alphabetically
@@ -231,7 +227,6 @@ private Map<String, String> constructNonOAuthParameters(String authToken, String
231227
* @param response
232228
* @param tokenSecret
233229
* @param authToken
234-
* @return
235230
*/
236231
private Auth constructAuth(Response response, String authToken, String tokenSecret) {
237232
Auth auth = new Auth();
@@ -253,7 +248,6 @@ private Auth constructAuth(Response response, String authToken, String tokenSecr
253248
* Construct a Access Token from a Flickr Response.
254249
*
255250
* @param response
256-
* @return
257251
*/
258252
private Token constructToken(Response response) {
259253
Element authElement = response.getPayload();

0 commit comments

Comments
 (0)