diff --git a/src/arcade/potts/agent/cell/PottsCellFlyGMC.java b/src/arcade/potts/agent/cell/PottsCellFlyGMC.java index f88ad4fc..48f4a212 100644 --- a/src/arcade/potts/agent/cell/PottsCellFlyGMC.java +++ b/src/arcade/potts/agent/cell/PottsCellFlyGMC.java @@ -12,9 +12,7 @@ /** * Implementation of {@link PottsCell} for fly GMC agents. These cells divide into two {@link * PottsCellFlyNeuron} cells. The links must be set in the setup file so that 100% of the daughter - * cells are Neurons. The differentiation of the parent cell is handled by the {@link - * PottsModuleProliferationVolumeBasedDivision} module. The basal apoptosis rate of this cell should - * be set to 0 in the setup file. + * cells are Neurons. The basal apoptosis rate of this cell should be set to 0 in the setup file. */ public class PottsCellFlyGMC extends PottsCell { diff --git a/src/arcade/potts/agent/module/PottsModuleProliferationVolumeBasedDivision.java b/src/arcade/potts/agent/module/PottsModuleProliferationVolumeBasedDivision.java index d121df3d..e154be0d 100644 --- a/src/arcade/potts/agent/module/PottsModuleProliferationVolumeBasedDivision.java +++ b/src/arcade/potts/agent/module/PottsModuleProliferationVolumeBasedDivision.java @@ -7,9 +7,8 @@ import arcade.potts.util.PottsEnums.Phase; /** - * Implementation of {@link PottsModule} for fly GMC agents. These cells divide into two {@link - * PottsCellFlyNeuron} cells. The links must be set in the setup file so that 100% of the daughter - * cells are Neurons. + * Implementation of {@link PottsModule} for fly GMC agents. The links must be set in the setup file + * so that 100% of the daughter cells are Neurons. */ public abstract class PottsModuleProliferationVolumeBasedDivision extends PottsModuleProliferation {