diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:03:12 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:03:12 +0000 |
commit | 2921a7c7b8ab27350108ae0e678947085ded7b94 (patch) | |
tree | 45f8d2a48cf2d0ff37f1a1e18c736bd68f090b99 /lib/custodian/util/timespan.rb | |
parent | 7473d89d4cb01a50921b9edcd262838b1adff437 (diff) |
Don't use "::" for method-calls.
Instead prefer ".".
Flagged by rubocop
Diffstat (limited to 'lib/custodian/util/timespan.rb')
-rw-r--r-- | lib/custodian/util/timespan.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/custodian/util/timespan.rb b/lib/custodian/util/timespan.rb index d3166c7..5340c65 100644 --- a/lib/custodian/util/timespan.rb +++ b/lib/custodian/util/timespan.rb @@ -53,8 +53,8 @@ module Custodian # def TimeSpan.to_hours( p_start, p_end ) - p_start = Custodian::Util::TimeSpan::to_hour(p_start) - p_end = Custodian::Util::TimeSpan::to_hour(p_end) + p_start = Custodian::Util::TimeSpan.to_hour(p_start) + p_end = Custodian::Util::TimeSpan.to_hour(p_end) # @@ -99,15 +99,15 @@ module Custodian # # Ensure all values are sane and reasonable. # - p_start = Custodian::Util::TimeSpan::to_hour(p_start) - p_end = Custodian::Util::TimeSpan::to_hour(p_end) - cur_hour = Custodian::Util::TimeSpan::to_hour(cur_hour) + p_start = Custodian::Util::TimeSpan.to_hour(p_start) + p_end = Custodian::Util::TimeSpan.to_hour(p_end) + cur_hour = Custodian::Util::TimeSpan.to_hour(cur_hour) # # Get the expanded hours # valid = - Custodian::Util::TimeSpan::to_hours( p_start, p_end ) + Custodian::Util::TimeSpan.to_hours( p_start, p_end ) # # Lookup to see if the specified hour is within the |