lint: remove whitespace

This commit is contained in:
Christoph Hartmann 2015-10-05 12:28:28 +02:00
parent bb0734f8f3
commit 14c5c3f393

View file

@ -1,12 +1,10 @@
# encoding: utf-8
module Converter
# convert the value to an integer if we have numbers only
# otherwise we return the string
def convert_to_i(val)
val = val.to_i if val.match(/^\d+$/)
val
end
end