From a9b9a1bff4cf9ce7c8c4fa9cf13e732f91cf9f86 Mon Sep 17 00:00:00 2001 From: Lawrence Lomax Date: Tue, 1 Feb 2022 00:43:24 -0800 Subject: [PATCH] Remove redundant xcodeCommandLineToolsDetected Summary: This is public but never read, no need for it to exist Reviewed By: passy Differential Revision: D33893097 fbshipit-source-id: aa423464f9cc0c35768a549fd5cb481784d8bcd6 --- .../flipper-server-core/src/devices/ios/iOSDeviceManager.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx b/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx index 7c48782b8..6040888bf 100644 --- a/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx +++ b/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx @@ -36,7 +36,6 @@ export class IOSDeviceManager { 'PortForwardingMacApp', ); simctlBridge: SimctlBridge = new SimctlBridge(); - public xcodeCommandLineToolsDetected = false; constructor(private flipperServer: FlipperServerImpl) {} @@ -132,7 +131,6 @@ export class IOSDeviceManager { this.idbConfig = setIdbConfig(settings); try { const isDetected = await iosUtil.isXcodeDetected(); - this.xcodeCommandLineToolsDetected = isDetected; if (settings.enablePhysicalIOS) { this.startDevicePortForwarders(); }