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
c996b1b9
Unverified
Commit
c996b1b9
authored
Oct 18, 2021
by
Gautier de Saint Martin Lacaze
Browse files
Fix compilation error
parent
502d03c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/ProjectApi.java
View file @
c996b1b9
...
...
@@ -1025,7 +1025,7 @@ public class ProjectApi extends AbstractApi implements Constants {
.
withParam
(
"packages_enabled"
,
project
.
getPackagesEnabled
())
.
withParam
(
"build_git_strategy"
,
project
.
getBuildGitStrategy
())
.
withParam
(
"build_coverage_regex"
,
project
.
getBuildCoverageRegex
())
.
withParam
(
"ci_config_path"
,
project
.
getCiConfigPath
())
;
.
withParam
(
"ci_config_path"
,
project
.
getCiConfigPath
())
.
withParam
(
"suggestion_commit_message"
,
project
.
getSuggestionCommitMessage
())
.
withParam
(
"remove_source_branch_after_merge"
,
project
.
getRemoveSourceBranchAfterMerge
())
.
withParam
(
"squash_option"
,
project
.
getSquashOption
());
...
...
@@ -1275,7 +1275,7 @@ public class ProjectApi extends AbstractApi implements Constants {
.
withParam
(
"build_git_strategy"
,
project
.
getBuildGitStrategy
())
.
withParam
(
"build_coverage_regex"
,
project
.
getBuildCoverageRegex
())
.
withParam
(
"ci_config_path"
,
project
.
getCiConfigPath
())
.
withParam
(
"ci_forward_deployment_enabled"
,
project
.
getCiForwardDeploymentEnabled
())
;
.
withParam
(
"ci_forward_deployment_enabled"
,
project
.
getCiForwardDeploymentEnabled
())
.
withParam
(
"merge_method"
,
project
.
getMergeMethod
())
.
withParam
(
"suggestion_commit_message"
,
project
.
getSuggestionCommitMessage
())
.
withParam
(
"remove_source_branch_after_merge"
,
project
.
getRemoveSourceBranchAfterMerge
())
...
...
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