From 1e574380413008a81b856d14fb6fdbf64d0f48ca Mon Sep 17 00:00:00 2001 From: CHERIFI Khadidja <khadidja.cherifi@etu.univ-amu.fr> Date: Sun, 18 Oct 2020 22:31:34 +0200 Subject: [PATCH] Replace Cell.java --- Cell.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Cell.java b/Cell.java index 9a0b4bd..f8a633a 100644 --- a/Cell.java +++ b/Cell.java @@ -6,11 +6,14 @@ public class Cell { private boolean isAlive; public Cell(){ - this.isAlive = false; + + this.isAlive = false; } /** * Determines whether this {@link Cell} is alive or not. + * + * * @return {@code true} if this {@link Cell} is alive and {@code false} otherwise */ @@ -32,7 +35,7 @@ public class Cell { /** * Sets the state of this {@link Cell} to alive. * - * @param cellState the new state of this {@link Cell} + * @param *cellState the new state of this {@link Cell} */ public void setAlive() { @@ -42,7 +45,7 @@ public class Cell { /** * Sets the state of this {@link Cell} to dead. * - * @param cellState the new state of this {@link Cell} + * @param *cellState the new state of this {@link Cell} */ public void setDead() { -- GitLab