Skip to content

Commit 2a4e517

Browse files
committed
Fixed javadoc errors (#154).
1 parent 4af2f7f commit 2a4e517

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: src/main/java/org/gitlab4j/api/RunnersApi.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@ public Pager<Job> getJobs(Integer runnerId, JobStatus status, int itemsPerPage)
279279
*
280280
* @param projectId The ID of the project owned by the authenticated user
281281
* @return List of all Runner available in the project
282+
* @throws GitLabApiException if any exception occurs
282283
*/
283284
public List<Runner> getProjectRunners(Integer projectId) throws GitLabApiException {
284285
if (projectId == null) {
@@ -296,7 +297,9 @@ public List<Runner> getProjectRunners(Integer projectId) throws GitLabApiExcepti
296297
* GET /projects/:id/runners
297298
*
298299
* @param projectId The ID of the project owned by the authenticated user
300+
* @param itemsPerPage the number of Project instances that will be fetched per page
299301
* @return Pager of all Runner available in the project
302+
* @throws GitLabApiException if any exception occurs
300303
*/
301304
public Pager<Runner> getProjectRunners(Integer projectId, int itemsPerPage) throws GitLabApiException {
302305
if (projectId == null) {
@@ -327,7 +330,7 @@ public Runner enableRunner(Integer projectId, Integer runnerId) throws GitLabApi
327330

328331
/**
329332
* Disable a specific runner from the project. It works only if the project isn't the only project associated with
330-
* the specified runner. If so, an error is returned. Use the {@link{#removeRunner(Integer)}} instead.
333+
* the specified runner. If so, an error is returned. Use the {@link #removeRunner(Integer)} instead.
331334
*
332335
* DELETE /projects/:id/runners/:runner_id
333336
*

0 commit comments

Comments
 (0)