Indent the way rubocop likes

This commit is contained in:
Lin Jen-Shin 2017-01-05 01:10:35 +08:00
parent ecac2f1122
commit 05d742a047
3 changed files with 5 additions and 5 deletions

View File

@ -4,8 +4,8 @@ module CreatesCommit
def create_commit(service, success_path:, failure_path:, failure_view: nil, success_notice: nil)
set_commit_variables
source_branch = @ref if @ref &&
@mr_source_project.repository.branch_exists?(@ref)
source_branch = @ref if
@ref && @mr_source_project.repository.branch_exists?(@ref)
commit_params = @commit_params.merge(
source_project: @mr_source_project,
source_branch: source_branch,

View File

@ -781,7 +781,7 @@ class Repository
end
if source_branch_name &&
source_project.repository.tree_entry_at(source_branch_name, path)
source_project.repository.tree_entry_at(source_branch_name, path)
raise Gitlab::Git::Repository::InvalidBlobName.new(error_message)
end
end

View File

@ -90,8 +90,8 @@ class GitOperationService
# If repo was empty expire cache
repository.after_create if was_empty
repository.after_create_branch if was_empty ||
Gitlab::Git.blank_ref?(oldrev)
repository.after_create_branch if
was_empty || Gitlab::Git.blank_ref?(oldrev)
newrev
end