From f4b9de38edb3152888cb8e9ea0f9e48a6f08dd26 Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin Date: Fri, 28 Oct 2016 03:12:12 +0800 Subject: [PATCH] It's not used as a public API right now, feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7034#note_17522443 --- app/models/commit.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/models/commit.rb b/app/models/commit.rb index 337b7445b46..20bb93f4663 100644 --- a/app/models/commit.rb +++ b/app/models/commit.rb @@ -51,7 +51,6 @@ class Commit end attr_accessor :raw - attr_reader :statuses def initialize(raw_commit, project) raise "Nil as raw commit passed" unless raw_commit @@ -236,12 +235,12 @@ class Commit end def status_for(ref) - if statuses.key?(ref) - statuses[ref] + if @statuses.key?(ref) + @statuses[ref] elsif ref - statuses[ref] = pipelines.where(ref: ref).status + @statuses[ref] = pipelines.where(ref: ref).status else - statuses[ref] = pipelines.status + @statuses[ref] = pipelines.status end end