Remove unneeded variable.

This commit is contained in:
NissimHadar 2019-03-21 14:47:48 -07:00
parent e913ea7859
commit b0e2b5fde1

View file

@ -197,10 +197,6 @@ void TestRunnerMobile::installAPK() {
return;
}
// Remove the path
QStringList parts = installerPathname.split('/');
_installerFilename = parts[parts.length() - 1];
_statusLabel->setText("Installing");
QString command = _adbInterface->getAdbCommand() + " install -r -d " + installerPathname + " >" + _workingFolder + "/installOutput.txt";
appendLog(command);