From 975493abcc4ae1653d08296d72600829a82005f0 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Sun, 10 Jul 2022 21:06:16 -0600 Subject: [PATCH] Add missing semicolons, see https://github.com/phetsims/chipper/issues/1275 --- js/common/model/HTMLImageElementObject.ts | 2 +- js/common/model/SecondPoint.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/common/model/HTMLImageElementObject.ts b/js/common/model/HTMLImageElementObject.ts index 091eb2bd..2f955005 100644 --- a/js/common/model/HTMLImageElementObject.ts +++ b/js/common/model/HTMLImageElementObject.ts @@ -32,7 +32,7 @@ export default class HTMLImageElementObject extends OpticalObject { // View-to-model scale for the associated HTMLImageElement. // This should be uniform for all values of htmlImageElementProperty. - public readonly scaleFactor: number + public readonly scaleFactor: number; // model bounds of this object's visual representation public readonly boundsProperty: IReadOnlyProperty; diff --git a/js/common/model/SecondPoint.ts b/js/common/model/SecondPoint.ts index 61f01968..72dc3e9b 100644 --- a/js/common/model/SecondPoint.ts +++ b/js/common/model/SecondPoint.ts @@ -33,7 +33,7 @@ export default class SecondPoint extends PhetioObject { public readonly positionProperty: IReadOnlyProperty; // vertical offset of second point with respect to the first point on the framed object position, in cm - private readonly verticalOffsetProperty: Property + private readonly verticalOffsetProperty: Property; // position of the framed object that second point is associated with private readonly framedObjectPositionProperty: IReadOnlyProperty;