From 400a62d12177008c73c61fd33f9f9ecf8ea2b6db Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Mon, 19 Jun 2017 13:36:05 -0700 Subject: [PATCH] Eliminate use of ideviceinfo in flutter_tools (#10804) This libimobiledevice tool is no longer used anywhere in the flutter_tools codebase. --- packages/flutter_tools/lib/src/ios/mac.dart | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/flutter_tools/lib/src/ios/mac.dart b/packages/flutter_tools/lib/src/ios/mac.dart index 1b1317e67ea..c13e5e1acb5 100644 --- a/packages/flutter_tools/lib/src/ios/mac.dart +++ b/packages/flutter_tools/lib/src/ios/mac.dart @@ -70,13 +70,6 @@ class IMobileDevice { return await exitsHappyAsync(['idevicename']); } - /// Returns the value associated with the specified `ideviceinfo` key for a device. - /// - /// If either the specified key or device does not exist, returns the empty string. - String getInfoForDevice(String deviceID, String key) { - return runSync(['ideviceinfo', '-k', key, '-u', deviceID]).trim(); - } - /// Starts `idevicesyslog` and returns the running process. Future startLogger() => runCommand(['idevicesyslog']);