Skip to content

Commit

Permalink
Add missing semicolons, see phetsims/chipper#1275
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 11, 2022
1 parent a346f8f commit 40a8878
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/common/model/EnergyDirection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class EnergyDirection extends EnumerationValue {
}

return assert && assert( false, 'unsupported enumValue' );
}
};

/**
* Get the opposite of the provided direction.
Expand All @@ -39,7 +39,7 @@ class EnergyDirection extends EnumerationValue {
return enumValue === EnergyDirection.UP ?
EnergyDirection.DOWN :
EnergyDirection.UP;
}
};

public static enumeration = new Enumeration( EnergyDirection );
}
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/FluxMeterNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 40a8878

Please sign in to comment.