summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhttp://jneen.net/ <jneen@jneen.net>2016-06-20 11:59:28 -0700
committerhttp://jneen.net/ <jneen@jneen.net>2016-06-27 14:17:49 -0700
commitc8b52761bc89089f2c3cddc2e4c80eb4ce42ce4c (patch)
tree959e6759fd0c2330a6ed29865d2405b056f820ad
parent5ff8371c5edac7d57c495e6fa8bb664361b8880f (diff)
downloadgitlab-ce-c8b52761bc89089f2c3cddc2e4c80eb4ce42ce4c.tar.gz
appease rubocop
-rw-r--r--lib/gitlab/highlight.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/gitlab/highlight.rb b/lib/gitlab/highlight.rb
index 2ba934a85c5..36ab622fff6 100644
--- a/lib/gitlab/highlight.rb
+++ b/lib/gitlab/highlight.rb
@@ -1,7 +1,6 @@
module Gitlab
class Highlight
- def self.highlight(blob_name, blob_content,
- repository: nil, nowrap: true, plain: false)
+ def self.highlight(blob_name, blob_content, repository: nil, nowrap: true, plain: false)
new(blob_name, blob_content, nowrap: nowrap, repository: repository).
highlight(blob_content, continue: false, plain: plain)
end