diff --git a/src/adb.js b/src/adb.js index 7c2b2ab..adf43a0 100644 --- a/src/adb.js +++ b/src/adb.js @@ -82,9 +82,7 @@ export class Adb extends Tool { * @returns {Promise} */ startServer() { - return this.killServer().then(() => { - this.exec("start-server"); - }); + return this.killServer().then(() => this.exec("start-server")); } /**