Github user FSchumacher commented on a diff in the pull request:
https://github.com/apache/jmeter/pull/356#discussion_r167627478
--- Diff: src/components/org/apache/jmeter/assertions/HTMLAssertion.java ---
@@ -328,17 +304,13 @@ public void setXML() {
/**
* Check if xml validation mode is set
- *
- * @return boolean
*/
public boolean isXML() {
return getPropertyAsLong(FORMAT_KEY) == 2;
}
/**
- * Sets the name of the file where tidy writes the output to
- *
- * @return name of file
+ * Gets the name of the file where tidy writes the output to
--- End diff --
If we remove the return tag, javadoc will complain.
---