eslint fixes

This commit is contained in:
Richard Davey 2018-04-05 09:28:04 +01:00
parent 441ca3862c
commit c1517d60ed

View file

@ -5,10 +5,10 @@
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var BuildGameObject = require('../BuildGameObject');
var Container = require('./Container');
var GameObjectCreator = require('../GameObjectCreator');
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
var GetFastValue = require('../../utils/object/GetFastValue');
/**
* Creates a new Container Game Object and returns it.
@ -26,7 +26,6 @@ GameObjectCreator.register('container', function (config)
{
var x = GetAdvancedValue(config, 'x', 0);
var y = GetAdvancedValue(config, 'y', 0);
var add = GetFastValue(config, 'add', true);
var container = new Container(this.scene, x, y);