diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-06-20 17:20:02 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-06-20 17:20:02 +0200 |
commit | d66d1263820df67f63c8b7ca5739ebe0ef7cdc1a (patch) | |
tree | 41c51cbf88731ed72ef42e2114eeca6d826006b3 | |
parent | a4a5cbf29a983d05b5fc69f8e63fc37e100c8637 (diff) | |
download | gitlab-ce-d66d1263820df67f63c8b7ca5739ebe0ef7cdc1a.tar.gz |
Remove unused attr_accessor from Gitlab::Git::Commit
-rw-r--r-- | lib/gitlab/git/commit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/git/commit.rb b/lib/gitlab/git/commit.rb index bb04731f08c..d5d149f1423 100644 --- a/lib/gitlab/git/commit.rb +++ b/lib/gitlab/git/commit.rb @@ -4,7 +4,7 @@ module Gitlab class Commit include Gitlab::EncodingHelper - attr_accessor :raw_commit, :head, :refs + attr_accessor :raw_commit, :head SERIALIZE_KEYS = [ :id, :message, :parent_ids, |