From 87e7807b50219af63ef913b792c286170369f976 Mon Sep 17 00:00:00 2001 From: Marla Schulz Date: Wed, 2 Aug 2023 17:56:32 -0700 Subject: [PATCH] Remove TODOs, see: https://github.com/phetsims/center-and-variability/issues/374 --- js/model/SoccerCommonModel.ts | 42 ------------------------ js/model/SoccerCommonPreferencesModel.ts | 2 +- 2 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 js/model/SoccerCommonModel.ts diff --git a/js/model/SoccerCommonModel.ts b/js/model/SoccerCommonModel.ts deleted file mode 100644 index eb3e35b..0000000 --- a/js/model/SoccerCommonModel.ts +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright 2023, University of Colorado Boulder - -/** - * TODO Describe this class and its responsibilities. - * - * @author Marla Schulz - */ - -import soccerCommon from '../soccerCommon.js'; -import { PhetioObjectOptions } from '../../../tandem/js/PhetioObject.js'; -import PickRequired from '../../../phet-core/js/types/PickRequired.js'; -import TModel from '../../../joist/js/TModel.js'; - -type SelfOptions = { - //TODO add options that are specific to SoccerCommonModel here -}; - -type SoccerCommonModelOptions = SelfOptions & PickRequired; - -export default class SoccerCommonModel implements TModel { - - public constructor( providedOptions: SoccerCommonModelOptions ) { - //TODO - } - - /** - * Resets the model. - */ - public reset(): void { - //TODO - } - - /** - * Steps the model. - * @param dt - time step, in seconds - */ - public step( dt: number ): void { - //TODO - } -} - -soccerCommon.register( 'SoccerCommonModel', SoccerCommonModel ); \ No newline at end of file diff --git a/js/model/SoccerCommonPreferencesModel.ts b/js/model/SoccerCommonPreferencesModel.ts index 0d86cd6..a79f468 100644 --- a/js/model/SoccerCommonPreferencesModel.ts +++ b/js/model/SoccerCommonPreferencesModel.ts @@ -1,7 +1,7 @@ // Copyright 2023, University of Colorado Boulder /** - * TODO: describe file + * Model for sim specific preferences * * @author Marla Schulz (PhET Interactive Simulations) *