Skip to content

Commit

Permalink
Point TODOs to more specific issue, see phetsims/tandem#215
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 29, 2020
1 parent 0d5358a commit 62656e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/common/model/BodyIO.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const BodyIO = new IOType( 'BodyIO', {
valueType: Body,
documentation: 'Planet which determines the force of gravity.',

// TODO: https://github.com/phetsims/tandem/issues/211 ReferenceIO
// TODO: https://github.com/phetsims/tandem/issues/215 use ReferenceIO or equivalent
toStateObject: body => {
if ( body === null ) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion js/common/model/MassIO.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Mass from './Mass.js';
const MassIO = new IOType( 'MassIO', {
documentation: 'Model element for one of the masses',
valueType: Mass,
// TODO: https://github.com/phetsims/tandem/issues/211 ReferenceIO
// TODO: https://github.com/phetsims/tandem/issues/215 use ReferenceIO or equivalent
toStateObject: mass => {
if ( mass === null ) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion js/common/model/SpringIO.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const SpringIO = new IOType( 'SpringIO', {
valueType: Spring,
documentation: 'Hangs from the ceiling and applies a force to any attached BodyIO',

// TODO: https://github.com/phetsims/tandem/issues/211 ReferenceIO
// TODO: https://github.com/phetsims/tandem/issues/215 use ReferenceIO or equivalent
toStateObject: spring => {
if ( spring === null ) {
return null;
Expand Down

0 comments on commit 62656e8

Please sign in to comment.