summaryrefslogtreecommitdiff
path: root/lib/gitlab/diff/file_collection/compare.rb
blob: 20d8f891cc333f581c91b1ab36c25606401c4e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
      end
    end
  end
end