Skip to content

Commit

Permalink
remove blank line at end of file, phetsims/chipper#1427
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kauzmann <[email protected]>
  • Loading branch information
zepumph committed Mar 22, 2024
1 parent cd68a79 commit 434fa95
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
/* eslint-env node */

// use chipper's gruntfile
module.exports = require( '../chipper/js/grunt/Gruntfile.js' );
module.exports = require( '../chipper/js/grunt/Gruntfile.js' );
2 changes: 1 addition & 1 deletion js/common/GOColors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,4 @@ const GOColors = {
};

geometricOptics.register( 'GOColors', GOColors );
export default GOColors;
export default GOColors;
2 changes: 1 addition & 1 deletion js/common/GOConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ const GOConstants = {
};

geometricOptics.register( 'GOConstants', GOConstants );
export default GOConstants;
export default GOConstants;
2 changes: 1 addition & 1 deletion js/common/model/ArrowScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ export default class ArrowScene extends GOScene {
}
}

geometricOptics.register( 'ArrowScene', ArrowScene );
geometricOptics.register( 'ArrowScene', ArrowScene );
2 changes: 1 addition & 1 deletion js/common/model/FramedScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ export default class FramedScene extends GOScene {
}
}

geometricOptics.register( 'FramedScene', FramedScene );
geometricOptics.register( 'FramedScene', FramedScene );
2 changes: 1 addition & 1 deletion js/common/model/GOScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ export default abstract class GOScene extends PhetioObject {
}
}

geometricOptics.register( 'GOScene', GOScene );
geometricOptics.register( 'GOScene', GOScene );
2 changes: 1 addition & 1 deletion js/common/model/Guide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ export default class Guide {
}
}

geometricOptics.register( 'Guide', Guide );
geometricOptics.register( 'Guide', Guide );
2 changes: 1 addition & 1 deletion js/common/model/Guides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ export default class Guides {
}
}

geometricOptics.register( 'Guides', Guides );
geometricOptics.register( 'Guides', Guides );
2 changes: 1 addition & 1 deletion js/common/model/LightScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@ export default class LightScene extends GOScene {
}
}

geometricOptics.register( 'LightScene', LightScene );
geometricOptics.register( 'LightScene', LightScene );
2 changes: 1 addition & 1 deletion js/common/model/LightSpot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ function getIntersectionPosition( projectionScreenPosition: Vector2, opticPoint:
return new Vector2( projectionScreenPosition.x, y );
}

geometricOptics.register( 'LightSpot', LightSpot );
geometricOptics.register( 'LightSpot', LightSpot );
2 changes: 1 addition & 1 deletion js/common/model/OpticShapes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ type OpticShapes = {
readonly activeBoundsShape: Shape;
};

export default OpticShapes;
export default OpticShapes;
2 changes: 1 addition & 1 deletion js/common/model/OpticalObjectChoice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ export default class OpticalObjectChoice extends EnumerationValue {
}
}

geometricOptics.register( 'OpticalObjectChoice', OpticalObjectChoice );
geometricOptics.register( 'OpticalObjectChoice', OpticalObjectChoice );
2 changes: 1 addition & 1 deletion js/common/view/GuideNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ function setArmPosition( armNode: Node, viewFulcrumPosition: Vector2, angle: num
armNode.center = Vector2.createPolar( ARM_WIDTH / 2, -angle ).plus( viewFulcrumPosition );
}

geometricOptics.register( 'GuideNode', GuideNode );
geometricOptics.register( 'GuideNode', GuideNode );
2 changes: 1 addition & 1 deletion js/common/view/GuidesNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ export default class GuidesNode extends Node {
}
}

geometricOptics.register( 'GuidesNode', GuidesNode );
geometricOptics.register( 'GuidesNode', GuidesNode );
2 changes: 1 addition & 1 deletion js/common/view/OpticalAxisInFrontOfProjectionScreenNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ export default class OpticalAxisInFrontOfProjectionScreenNode extends Line {
}
}

geometricOptics.register( 'OpticalAxisInFrontOfProjectionScreenNode', OpticalAxisInFrontOfProjectionScreenNode );
geometricOptics.register( 'OpticalAxisInFrontOfProjectionScreenNode', OpticalAxisInFrontOfProjectionScreenNode );
2 changes: 1 addition & 1 deletion js/geometric-optics-main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ simLauncher.launch( () => {
phetioDesigned: true
} );
sim.start();
} );
} );
2 changes: 1 addition & 1 deletion js/mirror/model/MirrorShapes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@ export default class MirrorShapes implements OpticShapes {
}
}

geometricOptics.register( 'MirrorShapes', MirrorShapes );
geometricOptics.register( 'MirrorShapes', MirrorShapes );

0 comments on commit 434fa95

Please sign in to comment.