Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
allison-li-1016 committed Jan 21, 2025
1 parent c43de0b commit 5a43a2f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/arcade/patch/agent/cell/PatchCellCART.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,7 @@ public PatchCellTissue bindTarget(
// Within maximum search vicinity, search for neighboring cells to bind to
for (int i = 0; i < maxSearch; i++) {
Cell cell = (Cell) allAgents.get(i);
if (cell.getState() != State.APOPTOTIC
&& cell.getState() != State.NECROTIC) {
if (cell.getState() != State.APOPTOTIC && cell.getState() != State.NECROTIC) {
PatchCellTissue tissueCell = (PatchCellTissue) cell;
double cARAntigens = tissueCell.carAntigens;
double selfTargets = tissueCell.selfTargets;
Expand Down

0 comments on commit 5a43a2f

Please sign in to comment.