Skip to content

Commit

Permalink
Use Boolean instead of primitive boolean type for parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jmini committed Jan 13, 2025
1 parent 846cfaf commit f073b80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gitlab4j-api/src/main/java/org/gitlab4j/api/ProjectApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2502,9 +2502,9 @@ public ProjectHook addHook(
public ProjectHook addHook(
Object projectIdOrPath,
String url,
boolean doPushEvents,
boolean doIssuesEvents,
boolean doMergeRequestsEvents)
Boolean doPushEvents,
Boolean doIssuesEvents,
Boolean doMergeRequestsEvents)
throws GitLabApiException {
return addHook(projectIdOrPath, url, doPushEvents, doIssuesEvents, doMergeRequestsEvents, null);
}
Expand Down

0 comments on commit f073b80

Please sign in to comment.