diff --git a/js/common/model/Mass.ts b/js/common/model/Mass.ts index 61e27f0d..c5159a82 100644 --- a/js/common/model/Mass.ts +++ b/js/common/model/Mass.ts @@ -120,9 +120,6 @@ export default abstract class Mass extends PhetioObject { public readonly materialProperty: MaterialProperty; - // for phet-io support (to control the materialProperty), see https://github.com/phetsims/density-buoyancy-common/issues/268 - // private readonly customColorProperty?: Property; - // In m^3 (cubic meters) public readonly volumeProperty: NumberProperty; diff --git a/js/common/model/Material.ts b/js/common/model/Material.ts index 61f89d6c..903e2084 100644 --- a/js/common/model/Material.ts +++ b/js/common/model/Material.ts @@ -78,7 +78,7 @@ export default class Material extends PhetioObject implements HasValueProperty { tandem: tandem.createTandem( 'densityProperty' ), phetioFeatured: true, phetioDocumentation: 'Density of the material', - range: new Range( 0.8, 27000 ), + range: new Range( 0.8, 27000 ), // TODO Can this range change if we have enough info about the actual range of the densities? https://github.com/phetsims/density-buoyancy-common/issues/268 units: 'kg/m^3' }, viscosity: 1e-3,