Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jlipps committed May 6, 2014
1 parent b7828d3 commit d8d0a26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/devices/android/android.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,12 +444,12 @@ Android.prototype.initQueue = function () {
status: status.codes.UnknownError.code
, value: msg
}, cb);
}
}
}.bind(this), 1);
};

Android.prototype.push = function (elem) {
this.queue.push({action:elem[0][0], params:elem[0][1] || {}}, elem[1]);
this.queue.push({action: elem[0][0], params: elem[0][1] || {}}, elem[1]);
};

Android.prototype.wakeUp = function (cb) {
Expand Down

0 comments on commit d8d0a26

Please sign in to comment.