Bukama commented on code in PR #803:
URL: https://github.com/apache/maven-surefire/pull/803#discussion_r1897466706
##########
maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReport.java:
##########
@@ -278,17 +281,20 @@ protected I18N getI18N(Locale locale) {
return i18n;
}
+
/**
- * @return The according string for the section.
+ * @return the according string for the section
Review Comment:
Do you want to use the Java 16 inline return Javadoc here (which
automatically adds the period at the end)?
If yes, the correct Javadoc to write this would be
```java
{@return the according string for the section}
```
Which would be transformed to
```
Returns the according string for the section.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]