debian-mirror-gitlab/lib/gitlab/diff/file_collection/compare.rb

21 lines
434 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2016-09-13 17:45:13 +05:30
module Gitlab
module Diff
module FileCollection
class Compare < Base
def initialize(compare, project:, diff_options:, diff_refs: nil)
super(compare,
project: project,
diff_options: diff_options,
diff_refs: diff_refs)
end
2019-02-15 15:39:39 +05:30
def unfold_diff_lines(positions)
# no-op
end
2016-09-13 17:45:13 +05:30
end
end
end
end