Skip to content

Commit 9147f32

Browse files
committed
Clean up.
1 parent 76fa325 commit 9147f32

File tree

191 files changed

+209
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+209
-209
lines changed

src/animation/AnimationAction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function AnimationAction() {
1616
throw new Error( "THREE.AnimationAction: " +
1717
"Use mixer.clipAction for construction." );
1818

19-
};
19+
}
2020

2121
AnimationAction._new =
2222
function AnimationAction( mixer, clip, localRoot ) {

src/animation/AnimationClip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function AnimationClip( name, duration, tracks ) {
3333
this.trim();
3434
this.optimize();
3535

36-
};
36+
}
3737

3838
AnimationClip.prototype = {
3939

src/animation/AnimationMixer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function AnimationMixer( root ) {
2525

2626
this.timeScale = 1.0;
2727

28-
};
28+
}
2929

3030
Object.assign( AnimationMixer.prototype, EventDispatcher.prototype, {
3131

src/animation/AnimationObjectGroup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function AnimationObjectGroup( var_args ) {
6969

7070
};
7171

72-
};
72+
}
7373

7474
AnimationObjectGroup.prototype = {
7575

src/animation/KeyframeTrack.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ import { KeyframeTrackConstructor } from './KeyframeTrackConstructor';
1919
*/
2020

2121
function KeyframeTrack( name, times, values, interpolation ) {
22+
2223
KeyframeTrackConstructor.apply( this, arguments );
23-
};
24+
25+
}
2426

2527
KeyframeTrack.prototype = KeyframeTrackPrototype;
2628
KeyframeTrackPrototype.constructor = KeyframeTrack;
@@ -151,4 +153,4 @@ Object.assign( KeyframeTrack, {
151153
} );
152154

153155

154-
export { KeyframeTrack };
156+
export { KeyframeTrack };

src/animation/PropertyBinding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function PropertyBinding( rootNode, path, parsedPath ) {
1919

2020
this.rootNode = rootNode;
2121

22-
};
22+
}
2323

2424
PropertyBinding.prototype = {
2525

src/animation/PropertyMixer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function PropertyMixer( binding, typeName, valueSize ) {
5050
this.useCount = 0;
5151
this.referenceCount = 0;
5252

53-
};
53+
}
5454

5555
PropertyMixer.prototype = {
5656

src/animation/tracks/BooleanKeyframeTrack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function BooleanKeyframeTrack( name, times, values ) {
1616

1717
KeyframeTrackConstructor.call( this, name, times, values );
1818

19-
};
19+
}
2020

2121
BooleanKeyframeTrack.prototype =
2222
Object.assign( Object.create( KeyframeTrackPrototype ), {

src/animation/tracks/ColorKeyframeTrack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function ColorKeyframeTrack( name, times, values, interpolation ) {
1515

1616
KeyframeTrackConstructor.call( this, name, times, values, interpolation );
1717

18-
};
18+
}
1919

2020
ColorKeyframeTrack.prototype =
2121
Object.assign( Object.create( KeyframeTrackPrototype ), {

src/animation/tracks/NumberKeyframeTrack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function NumberKeyframeTrack( name, times, values, interpolation ) {
1414

1515
KeyframeTrackConstructor.call( this, name, times, values, interpolation );
1616

17-
};
17+
}
1818

1919
NumberKeyframeTrack.prototype =
2020
Object.assign( Object.create( KeyframeTrackPrototype ), {

0 commit comments

Comments
 (0)