Skip to content

Commit

Permalink
Use NumberProperty instead of Property, see #299
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jun 29, 2020
1 parent 8abbc1f commit c6fa45e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/common/model/engine/AbstractVerletAlgorithm.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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;
Expand Down

0 comments on commit c6fa45e

Please sign in to comment.