Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Jan 31, 2024
1 parent 5f6cd41 commit 5e30b36
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ public class DependencyUpdater {
* Create a new instance.
*
* @param projectKeeper project keeper reference
* @param config
* @param config project keeper configuration
* @param logger the logger to which we should write log messages
* @param projectDir the project directory
* @param currentProjectVersion the project's current version
* @return a new dependency updater
*/
public static DependencyUpdater create(final ProjectKeeper projectKeeper, ProjectKeeperConfig config,
public static DependencyUpdater create(final ProjectKeeper projectKeeper, final ProjectKeeperConfig config,
final Logger logger, final Path projectDir, final String currentProjectVersion) {
return new DependencyUpdater(projectKeeper, logger, projectDir,
new ProjectVersionIncrementor(config, logger, projectDir, currentProjectVersion));
Expand Down

0 comments on commit 5e30b36

Please sign in to comment.