Method was moved

This commit is contained in:
Douwe Maan 2016-01-15 14:11:36 +01:00
parent c8db25c37c
commit 71b4341a37

View file

@ -140,11 +140,11 @@ module Gitlab
end end
def old_lines def old_lines
@old_lines ||= self.class.process_file(*processing_args(:old)) @old_lines ||= Gitlab::Highlight.highlight_lines(*processing_args(:old))
end end
def new_lines def new_lines
@new_lines ||= self.class.process_file(*processing_args(:new)) @new_lines ||= Gitlab::Highlight.highlight_lines(*processing_args(:new))
end end
def longest_common_suffix(a, b) def longest_common_suffix(a, b)