Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Dec 29, 2023
1 parent 3d8c6ec commit 0ac5f64
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -89,7 +89,8 @@ public MojoDescriptor buildComponentDescriptor(PlexusConfiguration c, PluginDesc

PlexusConfiguration[] parameterConfigurations = c.getChild("parameters").getChildren("parameter");

List<Parameter> parameters = new ArrayList<>(Optional.ofNullable(mojoDescriptor.getParameters()).orElseGet(Collections::emptyList));
List<Parameter> parameters = new ArrayList<>(
Optional.ofNullable(mojoDescriptor.getParameters()).orElseGet(Collections::emptyList));
Map<String, Parameter> parameterMap = new LinkedHashMap<>(mojoDescriptor.getParameterMap());

for (PlexusConfiguration d : parameterConfigurations) {
Expand Down

0 comments on commit 0ac5f64

Please sign in to comment.