From c6fa45e964da32a6f00a545650ee923b77571d1b Mon Sep 17 00:00:00 2001 From: samreid Date: Mon, 29 Jun 2020 15:25:49 -0600 Subject: [PATCH] Use NumberProperty instead of Property, see https://github.com/phetsims/states-of-matter/issues/299 --- js/common/model/engine/AbstractVerletAlgorithm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/common/model/engine/AbstractVerletAlgorithm.js b/js/common/model/engine/AbstractVerletAlgorithm.js index e2a7563f..8b519f06 100644 --- a/js/common/model/engine/AbstractVerletAlgorithm.js +++ b/js/common/model/engine/AbstractVerletAlgorithm.js @@ -8,7 +8,7 @@ * @author Aaron Davis */ -import Property from '../../../../../axon/js/Property.js'; +import NumberProperty from '../../../../../axon/js/NumberProperty.js'; import inherit from '../../../../../phet-core/js/inherit.js'; import statesOfMatter from '../../../statesOfMatter.js'; import TimeSpanDataQueue from '../TimeSpanDataQueue.js'; @@ -31,7 +31,7 @@ function AbstractVerletAlgorithm( multipleParticleModel ) { this.multipleParticleModel = multipleParticleModel; // @protected, read only - this.pressureProperty = new Property( 0 ); // @public, read-only, in atm (atmospheres) + this.pressureProperty = new NumberProperty( 0 ); // @public, read-only, in atm (atmospheres) // @protected, read-write, used to set where particles bounce this.sideBounceInset = 1;