(maint) Remove filter check from commands class

This commit is contained in:
Brian Cain 2015-09-06 10:39:12 -07:00
parent 296f9abb1d
commit 49b4956323

View file

@ -53,11 +53,7 @@ class Vmfloaty
filter = options.filter
url = options.url
unless filter.nil?
Pooler.list(url, filter)
else
Pooler.list(url)
end
Pooler.list(url, filter)
end
end