Code cleanup.
This commit is contained in:
parent
2a77855c5e
commit
a26e4a205c
1 changed files with 1 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue