Skip to content

Commit

Permalink
Merge pull request #16 from alfa-laboratory/fix_emptyTag
Browse files Browse the repository at this point in the history
Fix empty tag
  • Loading branch information
trojanvv committed Nov 14, 2019
2 parents 0ced0bb + f18eff9 commit e2a1643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/ru/alfalab/gradle/FeatureReader.java
Expand Up @@ -18,7 +18,7 @@ public class FeatureReader {
*/
static Set<File> filterByTags(Set<File> featureSet, String tags) throws IOException {

if (tags == null) {
if (tags == null || tags.isEmpty()) {
return featureSet;
}

Expand Down

0 comments on commit e2a1643

Please sign in to comment.