diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-05-11 10:52:45 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-05-11 16:01:10 +0200 |
commit | 27fb64d6a33ea61ba5a0a3ad50babff8c30fa45f (patch) | |
tree | fcec9a2ac082717cba4e662b1a75bc138ffe9364 /app/models/commit.rb | |
parent | f737a079cee6689e6ba6c1536f223a882a558f3e (diff) | |
download | gitlab-ce-27fb64d6a33ea61ba5a0a3ad50babff8c30fa45f.tar.gz |
Remove deltas_only from DiffCollection
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r-- | app/models/commit.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb index 3a143a5a1f6..8d54ce6eb25 100644 --- a/app/models/commit.rb +++ b/app/models/commit.rb @@ -326,10 +326,7 @@ class Commit end def raw_diffs(*args) - use_gitaly = Gitlab::GitalyClient.feature_enabled?(:commit_raw_diffs) - deltas_only = args.last.is_a?(Hash) && args.last[:deltas_only] - - if use_gitaly && !deltas_only + if Gitlab::GitalyClient.feature_enabled?(:commit_raw_diffs) Gitlab::GitalyClient::Commit.diff_from_parent(self, *args) else raw.diffs(*args) |