Skip to content

Commit

Permalink
CollectionConfigValueExtractor fix for array values (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
Squiry authored Jul 17, 2023
1 parent a533243 commit e7cdd1b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public C extract(ConfigValue<?> value) {
for (var element : array) {
result.add(elementValueExtractor.extract(element));
}
return result;
}
throw ConfigValueExtractionException.unexpectedValueType(value, ConfigValue.ArrayValue.class);
}
Expand Down

0 comments on commit e7cdd1b

Please sign in to comment.