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 d8a7a56 commit 791b35e
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 @@ -99,4 +99,4 @@ module.exports = function( grunt ) {
} );

Gruntfile( grunt );
};
};
2 changes: 1 addition & 1 deletion js/BinPacker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,4 +262,4 @@ export class Bin {
}
}

BinPacker.Bin = Bin;
BinPacker.Bin = Bin;
2 changes: 1 addition & 1 deletion js/Bounds3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1139,4 +1139,4 @@ Poolable.mixInto( Bounds3, {
initialize: Bounds3.prototype.setMinMax
} );

export default Bounds3;
export default Bounds3;
2 changes: 1 addition & 1 deletion js/ComplexTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ QUnit.test( 'cubic roots 3', assert => {
approximateComplexEquals( assert, roots[ 0 ], roots_0, 'x^3 + x^2 + x + 1 = 0 // x=-1' );
approximateComplexEquals( assert, roots[ 1 ], roots_1, 'x^3 + x^2 + x + 1 = 0 // x=-i case' );
approximateComplexEquals( assert, roots[ 2 ], roots_2, 'x^3 + x^2 + x + 1 = 0 // x=i case' );
} );
} );
2 changes: 1 addition & 1 deletion js/LinearFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ const map = ( a1: number, a2: number, b1: number, b2: number, a3: number, clamp:
return b3;
};

dot.register( 'LinearFunction', LinearFunction );
dot.register( 'LinearFunction', LinearFunction );
2 changes: 1 addition & 1 deletion js/Matrix3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1515,4 +1515,4 @@ Matrix3.Matrix3IO = new IOType( 'Matrix3IO', {
entries: ArrayIO( NumberIO ),
type: EnumerationIO( Matrix3Type )
}
} );
} );
2 changes: 1 addition & 1 deletion js/OpenRangeTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ QUnit.test( 'assertion failures', assert => {
assert.throws( () => { range.setMax( 0 ); }, 'setting max less than min throws an error' );
}
assert.ok( true );
} );
} );
2 changes: 1 addition & 1 deletion js/Plane3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ export default class Plane3 {
public static readonly YZ = new Plane3( new Vector3( 1, 0, 0 ), 0 );
}

dot.register( 'Plane3', Plane3 );
dot.register( 'Plane3', Plane3 );
2 changes: 1 addition & 1 deletion js/Ray2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ export default class Ray2 {
}
}

dot.register( 'Ray2', Ray2 );
dot.register( 'Ray2', Ray2 );
2 changes: 1 addition & 1 deletion js/Ray3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ export default class Ray3 {
}
}

dot.register( 'Ray3', Ray3 );
dot.register( 'Ray3', Ray3 );
2 changes: 1 addition & 1 deletion js/UnivariatePolynomialTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ QUnit.test( 'x^3 + 10x^2 + 169x', assert => {
assert.ok( roots.some( root => root.equals( new Complex( -5, 12 ) ) ), 'first root' );
assert.ok( roots.some( root => root.equals( new Complex( -5, -12 ) ) ), 'second root' );
assert.ok( roots.some( root => root.equals( new Complex( 0, 0 ) ) ), 'third root' );
} );
} );
2 changes: 1 addition & 1 deletion js/Utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -922,4 +922,4 @@ dot.cubeRoot = Utils.cubeRoot;
dot.linear = Utils.linear;
dot.boxMullerTransform = Utils.boxMullerTransform;

export default Utils;
export default Utils;
2 changes: 1 addition & 1 deletion js/UtilsTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,4 +356,4 @@ QUnit.test( 'toFixedNumber', assert => {
assert.equal( Utils.toFixedNumber( 1000.100, 1 ).toString(), '1000.1' );
assert.equal( Utils.toFixedNumber( 1000.100, 1 ), 1000.1 );
assert.equal( Utils.toFixedNumber( -0, 1 ).toString(), '0' );
} );
} );
2 changes: 1 addition & 1 deletion js/Vector2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -790,4 +790,4 @@ Vector2.Vector2IO = new IOType<Vector2, Vector2StateObject>( 'Vector2IO', {
documentation: 'A numerical object with x and y properties, like {x:3,y:4}'
} );

export { v2 };
export { v2 };
2 changes: 1 addition & 1 deletion js/Vector3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -702,4 +702,4 @@ Vector3.Vector3IO = new IOType( 'Vector3IO', {
}
} );

export { v3 };
export { v3 };
2 changes: 1 addition & 1 deletion js/Vector4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,4 +609,4 @@ Vector4.Y_UNIT = assert ? new ImmutableVector4( 0, 1, 0, 0 ) : new Vector4( 0, 1
Vector4.Z_UNIT = assert ? new ImmutableVector4( 0, 0, 1, 0 ) : new Vector4( 0, 0, 1, 0 );
Vector4.W_UNIT = assert ? new ImmutableVector4( 0, 0, 0, 1 ) : new Vector4( 0, 0, 0, 1 );

export { v4 };
export { v4 };
2 changes: 1 addition & 1 deletion js/dot-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ import './main.js';

if ( !window.hasOwnProperty( '_' ) ) {
throw new Error( 'Underscore/Lodash not found: _' );
}
}

0 comments on commit 791b35e

Please sign in to comment.