Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
63b38a7b
Commit
63b38a7b
authored
Jul 16, 2019
by
Greg Messner
Browse files
Fixed in method name (#406).
parent
c7e65c3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/PipelineApi.java
View file @
63b38a7b
...
@@ -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
>
getPipelineTriggers
s
(
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
>>()
{}));
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment