Skip to content

Commit

Permalink
Fix Generator issue
Browse files Browse the repository at this point in the history
  • Loading branch information
malinthar committed Aug 2, 2022
1 parent b47d3d2 commit bdda9fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private Generators() {
String property = System.getProperty(PROP_SKIPPED_GENERATORS, "");
Set<Type> skippedGenerators = Stream.of(property.split(","))
.map(String::trim)
.filter(String::isBlank)
.filter(str -> !str.isBlank())
.map(Type::valueOf)
.collect(Collectors.toSet());
logger.info("Skipping generators of type: " + skippedGenerators);
Expand Down

0 comments on commit bdda9fc

Please sign in to comment.