From 40a887874677d342bfe087cc561997d560bc7511 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Sun, 10 Jul 2022 21:06:09 -0600 Subject: [PATCH] Add missing semicolons, see https://github.com/phetsims/chipper/issues/1275 --- js/common/model/EnergyDirection.ts | 4 ++-- js/common/view/FluxMeterNode.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/common/model/EnergyDirection.ts b/js/common/model/EnergyDirection.ts index 08e2786a..c53d3b85 100644 --- a/js/common/model/EnergyDirection.ts +++ b/js/common/model/EnergyDirection.ts @@ -30,7 +30,7 @@ class EnergyDirection extends EnumerationValue { } return assert && assert( false, 'unsupported enumValue' ); - } + }; /** * Get the opposite of the provided direction. @@ -39,7 +39,7 @@ class EnergyDirection extends EnumerationValue { return enumValue === EnergyDirection.UP ? EnergyDirection.DOWN : EnergyDirection.UP; - } + }; public static enumeration = new Enumeration( EnergyDirection ); } diff --git a/js/common/view/FluxMeterNode.ts b/js/common/view/FluxMeterNode.ts index ae584f9c..ea7b9f1c 100644 --- a/js/common/view/FluxMeterNode.ts +++ b/js/common/view/FluxMeterNode.ts @@ -54,7 +54,7 @@ const SENSOR_VIEW_HEIGHT = 10; class FluxMeterNode extends Node { public readonly fluxPanel: Panel; - private readonly wasDraggedProperty: BooleanProperty + private readonly wasDraggedProperty: BooleanProperty; /** * @param model - model component for the FluxMeter