* sort by date, not the array VRFS-2130

This commit is contained in:
Seth Call 2014-09-08 21:50:51 -05:00
parent cab20ba017
commit 8c22d68b60
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ module JamRuby
end
def count_concurrent(in_out_times)
in_out_times.sort!
in_out_times.sort! { |a,b| a[0] <=> b[0] }
max_concurrent = 0
concurrent = 0