Skip to content

Commit

Permalink
[MPH-189] Mark method params as final
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovds committed Jul 12, 2024
1 parent 2fb99f6 commit 203c9f8
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,11 @@ private static void setFieldWithReflection(final Object mojo, final String field
}

private static void setFieldsOnMojo(
DescribeMojo mojo,
MojoDescriptorCreator mojoDescriptorCreator,
PluginVersionResolver pluginVersionResolver,
MavenPluginManager pluginManager,
MavenSession session)
final DescribeMojo mojo,
final MojoDescriptorCreator mojoDescriptorCreator,
final PluginVersionResolver pluginVersionResolver,
final MavenPluginManager pluginManager,
final MavenSession session)
throws NoSuchFieldException, IllegalAccessException {
setFieldWithReflection(mojo, "mojoDescriptorCreator", mojoDescriptorCreator);
setFieldWithReflection(mojo, "pluginVersionResolver", pluginVersionResolver);
Expand Down

0 comments on commit 203c9f8

Please sign in to comment.