From 401127f8fc98c79a91049d0668362fc43600aee0 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Thu, 4 May 2023 05:18:16 -0600 Subject: [PATCH] Remove unnecessary type assertion, see https://github.com/phetsims/center-and-variability/issues/164 --- js/common/model/CAVModel.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/common/model/CAVModel.ts b/js/common/model/CAVModel.ts index 25ce0d80..44d3284d 100644 --- a/js/common/model/CAVModel.ts +++ b/js/common/model/CAVModel.ts @@ -27,9 +27,7 @@ export default class CAVModel { public readonly medianPredictionProperty: NumberProperty; public readonly meanPredictionProperty: NumberProperty; - // TODO: Why should this have an exclamation point? - public readonly selectedSceneModelProperty!: Property; - + public readonly selectedSceneModelProperty: Property; public readonly soccerBallHasBeenDraggedProperty: Property; public constructor( public readonly sceneModels: CAVSceneModel[], options: CAVModelOptions ) {