Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Aug 20, 2016
1 parent fbb65bf commit 9288b6b
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -3,9 +3,6 @@ define( [ 'utils/utils' ], function( Utils ) {
return Backbone.Collection.extend({
initialize: function( app, options ){
this.app = app;
this.list = {};
this.cache = {};
this.options = options;
},

/** Get dataset metadata */
Expand Down Expand Up @@ -36,6 +33,7 @@ define( [ 'utils/utils' ], function( Utils ) {
/** Fills request dictionary with data from cache/response */
request: function( options ) {
var self = this;
this.cache = this.cache || {};
options.start = options.start || 0;

// identify columns needed to fulfill request
Expand Down

0 comments on commit 9288b6b

Please sign in to comment.