Commit f67f9f11 authored by Greg Messner's avatar Greg Messner
Browse files

Fixed Javadoc issues (#336).

parent cf5cb33a
...@@ -441,6 +441,7 @@ public final class AccessTokenUtils { ...@@ -441,6 +441,7 @@ public final class AccessTokenUtils {
* @param baseUrl the GitLab server base URL * @param baseUrl the GitLab server base URL
* @param username the user name to to login for * @param username the user name to to login for
* @param password the password of the user to login for * @param password the password of the user to login for
* @return the GitLab seesion token as a cookie value
* @throws GitLabApiException if any error occurs * @throws GitLabApiException if any error occurs
*/ */
protected static final String login(final String baseUrl, final String username, protected static final String login(final String baseUrl, final String username,
...@@ -549,8 +550,7 @@ public final class AccessTokenUtils { ...@@ -549,8 +550,7 @@ public final class AccessTokenUtils {
* Logs out the user associated with the GitLab session cookie. * Logs out the user associated with the GitLab session cookie.
* *
* @param baseUrl the GitLab server base URL * @param baseUrl the GitLab server base URL
* @param username the user name to to login for * @param cookies the GitLab session cookie to logout
* @param password the password of the user to login for
* @throws GitLabApiException if any error occurs * @throws GitLabApiException if any error occurs
*/ */
protected static final void logout(final String baseUrl, final String cookies) throws GitLabApiException { protected static final void logout(final String baseUrl, final String cookies) throws GitLabApiException {
......
...@@ -80,9 +80,9 @@ public class FileUtils { ...@@ -80,9 +80,9 @@ public class FileUtils {
/** /**
* Reads the content of a Reader instance and returns it as a String. * Reads the content of a Reader instance and returns it as a String.
* *
* @param reader * @param reader the Reader instance to read the content from
* @return the content of a Reader instance as a String * @return the content of a Reader instance as a String
* @throws IOException * @throws IOException if any error occurs
*/ */
public static String getReaderContentAsString(Reader reader) throws IOException { public static String getReaderContentAsString(Reader reader) throws IOException {
......
Supports Markdown
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