Code cleanup.

This commit is contained in:
Martin Edenhofer 2013-03-25 13:49:01 +01:00
parent 2a77855c5e
commit a26e4a205c

View file

@ -32,11 +32,7 @@ module TimeCalculation
end
def self.dest_time(start_time, diff_in_min)
start_time_string = start_time.to_s
if start_time.to_s != /UTC/
start_time_string += ' UTC'
end
start_time = Time.parse( start_time_string )
start_time = Time.parse( start_time.to_s + ' UTC' )
dest_time = diff_in_min.round.business_minute.after( start_time )
return dest_time
end