Skip to content

Commit

Permalink
Fix checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
solth committed Nov 14, 2023
1 parent 7b0b6b2 commit 7c25459
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,9 @@ public void renameMedia(List<Process> processes) {
processes = lockAndSortProcessesForRenaming(processes);
int limit = ConfigCore.getIntParameterOrDefaultValue(ParameterCore.MAX_NUMBER_OF_PROCESSES_FOR_MEDIA_RENAMING);
if (0 < limit && limit < processes.size()) {
throw new TooManyProcessesSelectedException(Helper.getTranslation("tooManyProcessesSelectedForMediaRenaming", String.valueOf(limit), String.valueOf(processes.size())));
throw new TooManyProcessesSelectedException(
Helper.getTranslation("tooManyProcessesSelectedForMediaRenaming", String.valueOf(limit),
String.valueOf(processes.size())));
} else {
TaskManager.addTask(new RenameMediaThread(processes));
}
Expand Down

0 comments on commit 7c25459

Please sign in to comment.