summaryrefslogtreecommitdiff
path: root/app/models/ci/runner.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-05-30 13:46:47 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-05-30 13:53:25 +0200
commita55e8f109fbaec1bb2db19a37a6537d8833c995c (patch)
tree12fbb211730776614c224dbf6f14aec11fc3a3f1 /app/models/ci/runner.rb
parent43c35b0f20fb3bb67ea2b96bf8f806c7e95b6aec (diff)
downloadgitlab-ce-a55e8f109fbaec1bb2db19a37a6537d8833c995c.tar.gz
Enable Style/NegatedIf Rubocop coprubocop/enable-negatedif-style-cop
Favor `unless` over `if` for negative conditions (or control flow ||). See #17478
Diffstat (limited to 'app/models/ci/runner.rb')
-rw-r--r--app/models/ci/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/runner.rb b/app/models/ci/runner.rb
index 6829dc91cb9..adb65292208 100644
--- a/app/models/ci/runner.rb
+++ b/app/models/ci/runner.rb
@@ -60,7 +60,7 @@ module Ci
end
def display_name
- return short_sha unless !description.blank?
+ return short_sha if description.blank?
description
end