Commit 2a4e517b authored by Greg Messner's avatar Greg Messner
Browse files

Fixed javadoc errors (#154).

parent 4af2f7f2
...@@ -279,6 +279,7 @@ public class RunnersApi extends AbstractApi { ...@@ -279,6 +279,7 @@ public class RunnersApi extends AbstractApi {
* *
* @param projectId The ID of the project owned by the authenticated user * @param projectId The ID of the project owned by the authenticated user
* @return List of all Runner available in the project * @return List of all Runner available in the project
* @throws GitLabApiException if any exception occurs
*/ */
public List<Runner> getProjectRunners(Integer projectId) throws GitLabApiException { public List<Runner> getProjectRunners(Integer projectId) throws GitLabApiException {
if (projectId == null) { if (projectId == null) {
...@@ -296,7 +297,9 @@ public class RunnersApi extends AbstractApi { ...@@ -296,7 +297,9 @@ public class RunnersApi extends AbstractApi {
* GET /projects/:id/runners * GET /projects/:id/runners
* *
* @param projectId The ID of the project owned by the authenticated user * @param projectId The ID of the project owned by the authenticated user
* @param itemsPerPage the number of Project instances that will be fetched per page
* @return Pager of all Runner available in the project * @return Pager of all Runner available in the project
* @throws GitLabApiException if any exception occurs
*/ */
public Pager<Runner> getProjectRunners(Integer projectId, int itemsPerPage) throws GitLabApiException { public Pager<Runner> getProjectRunners(Integer projectId, int itemsPerPage) throws GitLabApiException {
if (projectId == null) { if (projectId == null) {
...@@ -327,7 +330,7 @@ public class RunnersApi extends AbstractApi { ...@@ -327,7 +330,7 @@ public class RunnersApi extends AbstractApi {
/** /**
* Disable a specific runner from the project. It works only if the project isn't the only project associated with * Disable a specific runner from the project. It works only if the project isn't the only project associated with
* the specified runner. If so, an error is returned. Use the {@link{#removeRunner(Integer)}} instead. * the specified runner. If so, an error is returned. Use the {@link #removeRunner(Integer)} instead.
* *
* DELETE /projects/:id/runners/:runner_id * DELETE /projects/:id/runners/:runner_id
* *
......
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