From 9628eb806a04aa48b042ac3209b78959a5215246 Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Mon, 26 Jul 2021 12:40:52 -0600 Subject: [PATCH] delete console.log, https://github.com/phetsims/ph-scale/issues/225 --- js/common/view/graph/GraphIndicatorDragListener.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/common/view/graph/GraphIndicatorDragListener.js b/js/common/view/graph/GraphIndicatorDragListener.js index a5a13ffe..3d7cfe3d 100644 --- a/js/common/view/graph/GraphIndicatorDragListener.js +++ b/js/common/view/graph/GraphIndicatorDragListener.js @@ -70,7 +70,6 @@ class GraphIndicatorDragListener extends DragListener { // a neutral solution. const isConcentration = ( graphUnitsProperty.get() === GraphUnits.MOLES_PER_LITER ); if ( isConcentration && adjustedValue === 9.9e-8 ) { - console.log( 'applying workaround for https://github.com/phetsims/ph-scale/issues/225' ); adjustedValue = 1.0e-7; }