/**
* Checks whether the given coordinates are with the borders of the map
*
* @param x x-coordinate to be checked.
* @param y y-coordinate to be checked.
* @param shouldSucceed The expected outcome.
*/
public void testBorders(int x, int y, boolean shouldSucceed) {
使用maven生成checkstyle报告时,它说
警告javadoc JavadocMethod预期'x'的@param标记。
对于所有变量,是否有人知道我做错了什么或为什么maven告诉我标签不存在?