summaryrefslogtreecommitdiff
path: root/app/models/network/graph.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/network/graph.rb')
-rw-r--r--app/models/network/graph.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/models/network/graph.rb b/app/models/network/graph.rb
index 9259cb1a0fa..c71c444a669 100644
--- a/app/models/network/graph.rb
+++ b/app/models/network/graph.rb
@@ -89,7 +89,7 @@ module Network
end
end
- if self.class.max_count / 2 < offset then
+ if self.class.max_count / 2 < offset
# get max index that commit is displayed in the center.
offset - self.class.max_count / 2
else
@@ -130,7 +130,7 @@ module Network
commit.parents(@map).each do |parent|
range = commit.time..parent.time
- space = if commit.space >= parent.space then
+ space = if commit.space >= parent.space
find_free_parent_space(range, parent.space, -1, commit.space)
else
find_free_parent_space(range, commit.space, -1, parent.space)
@@ -144,7 +144,7 @@ module Network
end
def find_free_parent_space(range, space_base, space_step, space_default)
- if is_overlap?(range, space_default) then
+ if is_overlap?(range, space_default)
find_free_space(range, space_step, space_base, space_default)
else
space_default
@@ -155,7 +155,7 @@ module Network
range.each do |i|
if i != range.first &&
i != range.last &&
- @commits[i].spaces.include?(overlap_space) then
+ @commits[i].spaces.include?(overlap_space)
return true;
end
@@ -233,7 +233,7 @@ module Network
space = space_default
while reserved.include?(space) do
space += space_step
- if space < space_base then
+ if space < space_base
space_step *= -1
space = space_base + space_step
end