Commit 3a8f4a34 authored by Jacob Vosmaer's avatar Jacob Vosmaer

Remove unnecessary 'raw' alias

parent 29a07fd3
...@@ -58,11 +58,6 @@ module Gitlab ...@@ -58,11 +58,6 @@ module Gitlab
end end
end end
# Alias to old method for compatibility
def raw
rugged
end
def rugged def rugged
@rugged ||= Rugged::Repository.new(path, alternates: alternate_object_directories) @rugged ||= Rugged::Repository.new(path, alternates: alternate_object_directories)
rescue Rugged::RepositoryError, Rugged::OSError rescue Rugged::RepositoryError, Rugged::OSError
......
...@@ -114,7 +114,7 @@ describe Gitlab::Git::Commit, seed_helper: true do ...@@ -114,7 +114,7 @@ describe Gitlab::Git::Commit, seed_helper: true do
describe '.find' do describe '.find' do
it "should return first head commit if without params" do it "should return first head commit if without params" do
expect(Gitlab::Git::Commit.last(repository).id).to eq( expect(Gitlab::Git::Commit.last(repository).id).to eq(
repository.raw.head.target.oid repository.rugged.head.target.oid
) )
end end
......
...@@ -22,7 +22,6 @@ describe Gitlab::Git::Repository, seed_helper: true do ...@@ -22,7 +22,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
describe "Respond to" do describe "Respond to" do
subject { repository } subject { repository }
it { is_expected.to respond_to(:raw) }
it { is_expected.to respond_to(:rugged) } it { is_expected.to respond_to(:rugged) }
it { is_expected.to respond_to(:root_ref) } it { is_expected.to respond_to(:root_ref) }
it { is_expected.to respond_to(:tags) } it { is_expected.to respond_to(:tags) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment