Fix new rubocop warnings

This commit is contained in:
Tom Hughes 2018-09-22 17:12:29 +01:00
parent fbd6909b91
commit 6c2093b29d
21 changed files with 51 additions and 0 deletions

View file

@ -29,6 +29,7 @@ module GeoRecord
def in_world?
return false if lat < -90 || lat > 90
return false if lon < -180 || lon > 180
true
end