Skip to content

Commit

Permalink
Move PropertyIO to Property.js, see phetsims/tandem#212
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 29, 2020
1 parent a999b4d commit 9a5af19
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/Vector2Property.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
*/

import Property from '../../axon/js/Property.js';
import PropertyIO from '../../axon/js/PropertyIO.js';
import validate from '../../axon/js/validate.js';
import merge from '../../phet-core/js/merge.js';
import Bounds2 from './Bounds2.js';
Expand Down Expand Up @@ -39,7 +38,7 @@ class Vector2Property extends Property {
validBounds: null,

// phet-io
phetioType: PropertyIO( Vector2IO )
phetioType: Property.PropertyIO( Vector2IO )
}, options );

super( initialValue, options );
Expand Down

0 comments on commit 9a5af19

Please sign in to comment.