Skip to content

Commit

Permalink
Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Feb 5, 2021
1 parent 9b945e3 commit e9e9bcd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/extras/core/CurvePath.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class CurvePath extends Curve {

toJSON() {

const data = super.toJSON( );
const data = super.toJSON();

data.autoClose = this.autoClose;
data.curves = [];
Expand Down
2 changes: 1 addition & 1 deletion src/extras/core/Path.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class Path extends CurvePath {

toJSON() {

const data = super.toJSON( );
const data = super.toJSON();

data.currentPoint = this.currentPoint.toArray();

Expand Down
2 changes: 1 addition & 1 deletion src/extras/core/Shape.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Shape extends Path {

toJSON() {

const data = super.toJSON( );
const data = super.toJSON();

data.uuid = this.uuid;
data.holes = [];
Expand Down

0 comments on commit e9e9bcd

Please sign in to comment.