Remove parentheses from if statement

Otherwise Rubocop will give a warning.

As mentioned in !3197.
This commit is contained in:
connorshea 2016-03-15 10:42:16 -06:00
parent 178c80a561
commit 0129f346ee
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class GitPushService < BaseService
project.change_head(branch_name)
# Set protection on the default branch if configured
if (current_application_settings.default_branch_protection != PROTECTION_NONE)
if current_application_settings.default_branch_protection != PROTECTION_NONE
developers_can_push = current_application_settings.default_branch_protection == PROTECTION_DEV_CAN_PUSH ? true : false
@project.protected_branches.create({ name: @project.default_branch, developers_can_push: developers_can_push })
end