aanpassen commentaar shape

This commit is contained in:
Leen Dereu
2018-03-11 21:17:06 +01:00
parent 6288d46945
commit 6e32d5f053

View File

@@ -302,8 +302,6 @@ public class Worm {
*/ */
private final double minRadius; private final double minRadius;
/** /**
* Check whether the given radius is a valid radius for the worm * Check whether the given radius is a valid radius for the worm
* *
@@ -311,7 +309,7 @@ public class Worm {
* the radius to check * the radius to check
* @return True if and only if the radius is bigger then the minimum radius * @return True if and only if the radius is bigger then the minimum radius
* (or equal) and the radius is a number * (or equal) and the radius is a number
* |result == (radius >= this.minRadius && !Double.isNaN(radius)) * |result == (radius >= getMinRadius() && !Double.isNaN(radius))
*/ */
@Raw @Raw
private boolean canHaveAsRadius(double radius) { private boolean canHaveAsRadius(double radius) {