From 29c2b88e6a5a2f0cc879c9cbd5befa24d4dde869 Mon Sep 17 00:00:00 2001 From: jannetty Date: Mon, 2 Mar 2026 12:04:18 -0800 Subject: [PATCH] removing unnecessary references in docstrings --- src/arcade/potts/agent/cell/PottsCellFlyGMC.java | 4 +--- .../module/PottsModuleProliferationVolumeBasedDivision.java | 5 ++--- 2 files changed, 3 insertions(+), 6 deletions(-) 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 {