diff --git a/lib/adb.js b/lib/adb.js index fb7c3ce..ee28799 100644 --- a/lib/adb.js +++ b/lib/adb.js @@ -32,7 +32,7 @@ function ADBObject() { }; this.getHostname = function(id) { - return this.getProperty(id, "net.hostname").trim(); + return this.getProperty(id, "net.hostname").trim(); }; this.getProperty = function(id, name) { @@ -52,7 +52,7 @@ function ADBObject() { return SHELL.exec([this.binPath, "-s", id, "shell"].concat(args)); } catch (e) { return ""; - } + } }; }