Commit 63b38a7b authored by Greg Messner's avatar Greg Messner
Browse files

Fixed in method name (#406).

parent c7e65c3e
...@@ -584,7 +584,7 @@ public class PipelineApi extends AbstractApi implements Constants { ...@@ -584,7 +584,7 @@ public class PipelineApi extends AbstractApi implements Constants {
* @return a list of project pipeline triggers for the specified project in the specified page range * @return a list of project pipeline triggers for the specified project in the specified page range
* @throws GitLabApiException if any exception occurs * @throws GitLabApiException if any exception occurs
*/ */
public List<Trigger> getPipelineTriggerss(Object projectIdOrPath, int page, int perPage) throws GitLabApiException { public List<Trigger> getPipelineTriggers(Object projectIdOrPath, int page, int perPage) throws GitLabApiException {
Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "projects", getProjectIdOrPath(projectIdOrPath), "triggers"); Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "projects", getProjectIdOrPath(projectIdOrPath), "triggers");
return (response.readEntity(new GenericType<List<Trigger>>() {})); return (response.readEntity(new GenericType<List<Trigger>>() {}));
} }
......
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