Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorValery Sizov <vsv2711@gmail.com>2011-11-13 17:31:18 +0400
committerValery Sizov <vsv2711@gmail.com>2011-11-13 17:31:18 +0400
commitdc844f013848ee1fa7721173bda3f3fc0ed0b8ba (patch)
tree69c4a576f01dcc093d1aff8685cc9a8d610ff284 /lib
parentc89682605ff36b9c7659ae204ebd08c7c9c7951c (diff)
Graph: small refactoring
Diffstat (limited to 'lib')
-rw-r--r--lib/graph_commit.rb11
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/graph_commit.rb b/lib/graph_commit.rb
index ee765cb4ef2..477f4f422e0 100644
--- a/lib/graph_commit.rb
+++ b/lib/graph_commit.rb
@@ -25,7 +25,7 @@ class GraphCommit
commits.reverse.each_with_index do |c,i|
c.time = i
- days[i]=c.committed_date
+ days[i] = c.committed_date
map[c.id] = c
heads += c.refs unless c.refs.nil?
end
@@ -63,7 +63,7 @@ class GraphCommit
m1 = mark - 1
marks = commit.parents.collect do |p|
if map.include? p.id and map[p.id].space == 0 then
- mark_chain(m1+=1, map[p.id],map)
+ mark_chain(m1 += 1, map[p.id],map)
else
m1 + 1
end
@@ -72,11 +72,4 @@ class GraphCommit
marks.compact.max
end
- def self.add_refs(commit, ref_cache)
- if ref_cache.empty?
- @repo.refs.each {|ref| ref_cache[ref.commit.id] ||= [];ref_cache[ref.commit.id] << ref}
- end
- commit.refs = ref_cache[commit.id] if ref_cache.include? commit.id
- commit.refs ||= []
- end
end