Shortened expression to check if a StringsRow matches a given set of tags.

This commit is contained in:
Sebastian Ludwig 2015-11-27 15:18:05 +01:00
parent e09b366a53
commit 36a1321b9b

View file

@ -42,11 +42,7 @@ module Twine
elsif @tags.empty?
return include_untagged
else
tags.each do |tag|
if @tags.include? tag
return true
end
end
return !(tags & @tags).empty?
end
return false