From ac769f759a22aee74f0e30de80d50df48f145ac9 Mon Sep 17 00:00:00 2001 From: denz1994 Date: Tue, 24 Mar 2020 21:32:28 -0400 Subject: [PATCH] Removed TODO related to #115. --- js/common/model/Molecule.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/common/model/Molecule.js b/js/common/model/Molecule.js index 533739d3..c3641261 100644 --- a/js/common/model/Molecule.js +++ b/js/common/model/Molecule.js @@ -46,7 +46,6 @@ class Molecule extends MoleculeStructure { */ shiftDestination( delta ) { this.atoms.forEach( atom => { - // TODO: memory: consider alternate mutable form atom.destination.add( delta ) atom.isSeparatingProperty.value = true; atom.destinationProperty.value = atom.destinationProperty.value.plus( delta ); } );