Skip to content

Commit

Permalink
remove unused variables, phetsims/chipper#1230
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed May 9, 2022
1 parent a1e0d01 commit 1dfcd90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/common/model/RAPRatioTuple.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class RAPRatioTuple {
return new RAPRatioTuple( this.antecedent, this.consequent );
}

toStateObject( rapRatioTuple: RAPRatioTuple ): RAPRatioTupleState {
toStateObject(): RAPRatioTupleState {
return {
antecedent: this.antecedent,
consequent: this.consequent
Expand Down
2 changes: 1 addition & 1 deletion js/create/view/MyChallengeAccordionBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class MyChallengeAccordionBox extends AccordionBox {
this.targetConsequentProperty = targetConsequentProperty;

const accordionBoxUtterance = new ActivationUtterance();
this.expandedProperty.lazyLink( ( expanded: boolean ) => {
this.expandedProperty.lazyLink( () => {
accordionBoxUtterance.alert = createAccordionBoxContextResponse();
this.alertDescriptionUtterance( accordionBoxUtterance );
} );
Expand Down
2 changes: 1 addition & 1 deletion js/create/view/TickMarkRangeComboBoxNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class TickMarkRangeComboBoxNode extends Node {

const tickMarkRangeChangedUtterance = new ActivationUtterance();

tickMarkRangeProperty.lazyLink( ( range: number ) => {
tickMarkRangeProperty.lazyLink( () => {
tickMarkRangeChangedUtterance.alert = this.getContextResponse();
this.alertDescriptionUtterance( tickMarkRangeChangedUtterance );
} );
Expand Down

0 comments on commit 1dfcd90

Please sign in to comment.