diff options
author | Marcus Tillmanns <[email protected]> | 2023-04-05 11:15:02 +0200 |
---|---|---|
committer | Marcus Tillmanns <[email protected]> | 2023-04-06 06:58:44 +0000 |
commit | 522de9bfd7afc30ae32affa728b7e929b46ccc60 (patch) | |
tree | a9ad8758797621a797f342bb680f72861f60ba5b /src/plugins/android/androiddevice.cpp | |
parent | f5c41a7f8350f210ee2e2815bd07669c40449b83 (diff) |
Devices: Unify Port Gathering method
All devices that support it use the same mechanism to gather ports
so this patch removes the individual implementations in favor
of a single one in IDevice.cpp.
This patch also removes:
* canAutodetectPorts() as it was not used.
* Port::parseFrom...Output as they are not used anymore.
Change-Id: I8ecedec2d71e60985402387982c64311c5a651e6
Reviewed-by: hjk <[email protected]>
Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/android/androiddevice.cpp')
-rw-r--r-- | src/plugins/android/androiddevice.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp index 6346c47d7eb..bd518a4e707 100644 --- a/src/plugins/android/androiddevice.cpp +++ b/src/plugins/android/androiddevice.cpp @@ -388,11 +388,6 @@ IDeviceWidget *AndroidDevice::createWidget() return new AndroidDeviceWidget(sharedFromThis()); } -bool AndroidDevice::canAutoDetectPorts() const -{ - return true; -} - DeviceProcessSignalOperation::Ptr AndroidDevice::signalOperation() const { return DeviceProcessSignalOperation::Ptr(new AndroidSignalOperation()); |