From 0eed23b05cbf5565b5e8a23fe1d1fae8724b7c46 Mon Sep 17 00:00:00 2001 From: samreid Date: Thu, 1 Nov 2018 22:39:16 -0600 Subject: [PATCH] Remove redundant phetioType option, see https://github.com/phetsims/axon/issues/116 --- js/Sim.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/Sim.js b/js/Sim.js index 66c5b599..6d76439b 100644 --- a/js/Sim.js +++ b/js/Sim.js @@ -359,8 +359,7 @@ define( function( require ) { this.activeProperty = new BooleanProperty( !phet.joist.playbackModeEnabledProperty.value, { tandem: ROOT_TANDEM.createTandem( 'activeProperty' ), phetioDocumentation: 'Determines whether the entire simulation is running and processing user input. ' + - 'Setting this property to false pauses the simulation, and prevents user interaction.', - phetioType: PropertyIO( BooleanIO ) + 'Setting this property to false pauses the simulation, and prevents user interaction.' } ); // @public (read-only) - property that indicates whether the browser tab containing the simulation is currently visible