Commit 73df49a0 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Eliminate unused libimobiledevice tool refs (#10778)

parent bcac3166
...@@ -43,7 +43,6 @@ class IOSDevice extends Device { ...@@ -43,7 +43,6 @@ class IOSDevice extends Device {
IOSDevice(String id, { this.name }) : super(id) { IOSDevice(String id, { this.name }) : super(id) {
_installerPath = _checkForCommand('ideviceinstaller'); _installerPath = _checkForCommand('ideviceinstaller');
_iproxyPath = _checkForCommand('iproxy'); _iproxyPath = _checkForCommand('iproxy');
_debuggerPath = _checkForCommand('idevicedebug');
_loggerPath = _checkForCommand('idevicesyslog'); _loggerPath = _checkForCommand('idevicesyslog');
_screenshotPath = _checkForCommand('idevicescreenshot'); _screenshotPath = _checkForCommand('idevicescreenshot');
_pusherPath = _checkForCommand( _pusherPath = _checkForCommand(
...@@ -60,9 +59,6 @@ class IOSDevice extends Device { ...@@ -60,9 +59,6 @@ class IOSDevice extends Device {
String _iproxyPath; String _iproxyPath;
String get iproxyPath => _iproxyPath; String get iproxyPath => _iproxyPath;
String _debuggerPath;
String get debuggerPath => _debuggerPath;
String _loggerPath; String _loggerPath;
String get loggerPath => _loggerPath; String get loggerPath => _loggerPath;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment