Skip to content

Commit

Permalink
Update core/deployment/src/main/java/io/quarkus/deployment/configurat…
Browse files Browse the repository at this point in the history
…ion/BuildTimeConfigurationReader.java

Co-authored-by: David M. Lloyd <david.lloyd@redhat.com>
(cherry picked from commit d676d3b)
  • Loading branch information
radcortez authored and gsmet committed Mar 25, 2024
1 parent 7df6b0f commit 5b1b0bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ public Set<String> getPropertyNames() {
}
});

String[] profiles = config.getProfiles().toArray(new String[] {});
String[] profiles = config.getProfiles().toArray(String[]::new);
for (String property : builder.build().getPropertyNames()) {
properties.add(ProfileConfigSourceInterceptor.activeName(property, profiles));
}
Expand Down

0 comments on commit 5b1b0bf

Please sign in to comment.