Method was moved

This commit is contained in:
Douwe Maan 2016-01-15 14:11:36 +01:00
parent c8db25c37c
commit 71b4341a37
1 changed files with 2 additions and 2 deletions

View File

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