Skip to content

Commit c996b1b

Browse files
committed
Fix compilation error
1 parent 502d03c commit c996b1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/gitlab4j/api/ProjectApi.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ public Project createProject(Project project, String importUrl) throws GitLabApi
10251025
.withParam("packages_enabled", project.getPackagesEnabled())
10261026
.withParam("build_git_strategy", project.getBuildGitStrategy())
10271027
.withParam("build_coverage_regex", project.getBuildCoverageRegex())
1028-
.withParam("ci_config_path", project.getCiConfigPath());
1028+
.withParam("ci_config_path", project.getCiConfigPath())
10291029
.withParam("suggestion_commit_message", project.getSuggestionCommitMessage())
10301030
.withParam("remove_source_branch_after_merge", project.getRemoveSourceBranchAfterMerge())
10311031
.withParam("squash_option", project.getSquashOption());
@@ -1275,7 +1275,7 @@ public Project updateProject(Project project) throws GitLabApiException {
12751275
.withParam("build_git_strategy", project.getBuildGitStrategy())
12761276
.withParam("build_coverage_regex", project.getBuildCoverageRegex())
12771277
.withParam("ci_config_path", project.getCiConfigPath())
1278-
.withParam("ci_forward_deployment_enabled", project.getCiForwardDeploymentEnabled());
1278+
.withParam("ci_forward_deployment_enabled", project.getCiForwardDeploymentEnabled())
12791279
.withParam("merge_method", project.getMergeMethod())
12801280
.withParam("suggestion_commit_message", project.getSuggestionCommitMessage())
12811281
.withParam("remove_source_branch_after_merge", project.getRemoveSourceBranchAfterMerge())

0 commit comments

Comments
 (0)