eslint fix

This commit is contained in:
Richard Davey 2018-04-11 16:58:25 +01:00
parent a1e10a4bbc
commit 64b07c6ecb
2 changed files with 2 additions and 4 deletions

View file

@ -4,7 +4,6 @@
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var Bodies = require('./lib/factory/Bodies');
var Class = require('../../utils/Class');
var Components = require('./components');
var GameObject = require('../../gameobjects/GameObject');
@ -119,7 +118,7 @@ var MatterImage = new Class({
}
else
{
this.setRectangle(this.width, this.height, options)
this.setRectangle(this.width, this.height, options);
}
this.setPosition(x, y);

View file

@ -5,7 +5,6 @@
*/
var AnimationComponent = require('../../gameobjects/components/Animation');
var Bodies = require('./lib/factory/Bodies');
var Class = require('../../utils/Class');
var Components = require('./components');
var GameObject = require('../../gameobjects/GameObject');
@ -126,7 +125,7 @@ var MatterSprite = new Class({
}
else
{
this.setRectangle(this.width, this.height, options)
this.setRectangle(this.width, this.height, options);
}
this.setPosition(x, y);