[Build] Remove unused variables

...to satisfy JSHint
This commit is contained in:
Victor Woeltjen
2016-03-04 11:41:48 -08:00
parent bf232d0593
commit a1a7b2b8ce
44 changed files with 55 additions and 109 deletions

View File

@ -61,7 +61,7 @@ define(
* @memberof platform/core
* @constructor
*/
function DomainObjectProvider(modelService, instantiate, $q) {
function DomainObjectProvider(modelService, instantiate) {
this.modelService = modelService;
this.instantiate = instantiate;
}
@ -75,7 +75,7 @@ define(
// from this service.
function assembleResult(models) {
var result = {};
ids.forEach(function (id, index) {
ids.forEach(function (id) {
if (models[id]) {
// Create the domain object
result[id] = instantiate(models[id], id);