summaryrefslogtreecommitdiff
path: root/lib/gitlab/diff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-02-10 15:26:23 -0500
committerRobert Speicher <rspeicher@gmail.com>2017-02-13 11:00:20 -0500
commit17c8d15b14f6c3ecc98e1466e9148cf100cc12c6 (patch)
tree6eb652b9051afcd60d11568ab3be095b0207c1c0 /lib/gitlab/diff
parent5db56efe424c9cd760580a755ec4e131d045769d (diff)
downloadgitlab-ce-17c8d15b14f6c3ecc98e1466e9148cf100cc12c6.tar.gz
Enable `Lint/EmptyWhen` cop and correct offense
Diffstat (limited to 'lib/gitlab/diff')
-rw-r--r--lib/gitlab/diff/parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/diff/parser.rb b/lib/gitlab/diff/parser.rb
index 59a2367b65d..89320f5d9dc 100644
--- a/lib/gitlab/diff/parser.rb
+++ b/lib/gitlab/diff/parser.rb
@@ -45,7 +45,7 @@ module Gitlab
line_new += 1
when "-"
line_old += 1
- when "\\"
+ when "\\" # rubocop:disable Lint/EmptyWhen
# No increment
else
line_new += 1