Bump checkstyle from 8.43 to 8.44

Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 8.43 to 8.44.
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-8.43...checkstyle-8.44)

---
updated-dependencies:
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2021-06-28 04:15:37 +00:00 committed by Mustapha Zorgati
parent bddb26779c
commit a269c9d2f5
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@
<version.json>20210307</version.json>
<!-- build dependencies -->
<version.checkstyle>8.43</version.checkstyle>
<version.checkstyle>8.44</version.checkstyle>
<version.google-java-format>1.10.0</version.google-java-format>
<version.maven.checkstyle>3.1.2</version.maven.checkstyle>
<version.maven.jar>3.2.0</version.maven.jar>

View File

@ -48,13 +48,13 @@ public class MonitorController {
* grouped by Workbaskets. Each row represents a Workbasket while each column represents a Task
* State.
*
* @title Get a Task Status Report
* @param domains Filter the report values by domains.
* @param states Filter the report values by Task states.
* @param workbasketIds Filter the report values by Workbasket Ids.
* @param priorityMinimum Filter the report values by a minimum priority.
* @return the computed TaskStatusReport
* @throws NotAuthorizedException if the current user is not authorized to compute the report
* @title Get a Task Status Report
*/
@GetMapping(path = RestEndpoints.URL_MONITOR_TASKS_STATUS_REPORT)
@Transactional(readOnly = true, rollbackFor = Exception.class)
@ -87,12 +87,12 @@ public class MonitorController {
* date range and grouped by Workbaskets. Each row represents a Workbasket while each column
* represents a date range.
*
* @title Get a Workbasket Report
* @param states Filter the report by task states
* @param taskTimestamp determine which task timestamp should be used for comparison
* @return the computed report
* @throws NotAuthorizedException if the current user is not authorized to compute the report
* @throws InvalidArgumentException TODO: this is never thrown ...
* @title Get a Workbasket Report
*/
@GetMapping(path = RestEndpoints.URL_MONITOR_TASKS_WORKBASKET_REPORT)
@Transactional(readOnly = true, rollbackFor = Exception.class)
@ -145,8 +145,8 @@ public class MonitorController {
* column represents a date range.
*
* @title Get a Classification Report
* @return the computed report
* @param taskTimestamp determine which Task Timestamp should be used for comparison
* @return the computed report
* @throws NotAuthorizedException if the current user is not authorized to compute the report
* @throws InvalidArgumentException TODO: this is never thrown
*/