Skip to content

Commit c1517d6

Browse files
committed
eslint fixes
1 parent 441ca38 commit c1517d6

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/gameobjects/container/ContainerCreator.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
66
*/
77

8+
var BuildGameObject = require('../BuildGameObject');
89
var Container = require('./Container');
910
var GameObjectCreator = require('../GameObjectCreator');
1011
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
11-
var GetFastValue = require('../../utils/object/GetFastValue');
1212

1313
/**
1414
* Creates a new Container Game Object and returns it.
@@ -26,7 +26,6 @@ GameObjectCreator.register('container', function (config)
2626
{
2727
var x = GetAdvancedValue(config, 'x', 0);
2828
var y = GetAdvancedValue(config, 'y', 0);
29-
var add = GetFastValue(config, 'add', true);
3029

3130
var container = new Container(this.scene, x, y);
3231

0 commit comments

Comments
 (0)