From 73df49a0d924aa88ade81ab68cc221fe36e6e366 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Fri, 16 Jun 2017 10:42:07 -0700 Subject: [PATCH] Eliminate unused libimobiledevice tool refs (#10778) --- packages/flutter_tools/lib/src/ios/devices.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/flutter_tools/lib/src/ios/devices.dart b/packages/flutter_tools/lib/src/ios/devices.dart index 83b53df790..1ee7290083 100644 --- a/packages/flutter_tools/lib/src/ios/devices.dart +++ b/packages/flutter_tools/lib/src/ios/devices.dart @@ -43,7 +43,6 @@ class IOSDevice extends Device { IOSDevice(String id, { this.name }) : super(id) { _installerPath = _checkForCommand('ideviceinstaller'); _iproxyPath = _checkForCommand('iproxy'); - _debuggerPath = _checkForCommand('idevicedebug'); _loggerPath = _checkForCommand('idevicesyslog'); _screenshotPath = _checkForCommand('idevicescreenshot'); _pusherPath = _checkForCommand( @@ -60,9 +59,6 @@ class IOSDevice extends Device { String _iproxyPath; String get iproxyPath => _iproxyPath; - String _debuggerPath; - String get debuggerPath => _debuggerPath; - String _loggerPath; String get loggerPath => _loggerPath;