Skip to content

Commit

Permalink
cleaning up callback
Browse files Browse the repository at this point in the history
  • Loading branch information
sebv committed Nov 27, 2014
1 parent 3a235c9 commit 06fc8b1
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lib/devices/android/android.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,7 @@ Android.prototype.noLaunchSetup = function (cb) {
async.series([
this.initJavaVersion.bind(this),
this.initAdb.bind(this),
], function (err) {
if (err) {
return cb(err);
} else {
return cb();
}
}.bind(this));
], function (err) { cb(err); });
};

Android.prototype.start = function (cb, onDie) {
Expand Down

0 comments on commit 06fc8b1

Please sign in to comment.