Skip to content

Commit

Permalink
Refactor: Simplify class names array creation
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkak committed Nov 28, 2023
1 parent a69b124 commit 26188e1
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,7 @@ void setupClientProxies(JaxrsClientReactiveRecorder recorder,
scannedParameterContainers.addAll(parameterContainersBuildItem.getClassNames());
}
reflectiveClassBuildItemBuildProducer.produce(ReflectiveClassBuildItem
.builder(scannedParameterContainers.stream().map(name -> name.toString()).collect(Collectors.toSet())
.toArray(new String[0]))
.builder(scannedParameterContainers.stream().map(DotName::toString).distinct().toArray(String[]::new))
.methods().fields().build());

if (resourceScanningResultBuildItem.isEmpty()
Expand Down

0 comments on commit 26188e1

Please sign in to comment.