Code cleanup

This commit is contained in:
Jeremiah Billmann
2013-07-09 21:46:23 -04:00
parent 39751c8044
commit 997afd00f1
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
var Entity = require('../entities/entity');
var entity = require('../entities/entity');
exports = module.exports = EntityController;
@@ -19,7 +19,7 @@ EntityController.prototype = {
});
if (!entityFound) {
newEntity = new Entity(id);
newEntity = new entity(id);
this.entities.push(newEntity);
}
return newEntity;