From 59b57518f33de9f66419541433f93295b5442ed8 Mon Sep 17 00:00:00 2001 From: Daniel Teske Date: Mon, 15 Jun 2015 12:48:49 +0200 Subject: [PATCH] DebuggerRunParameters: Remove remoteSourcesDir, [remote|local]MountPoint Those variables are unused except for debugging output since more than 1 year. ed1483741e54d3c2303322cea92861ca68f272f7 Change-Id: I052fd042901401641c784eb66ab017a8f31f844e Reviewed-by: hjk --- src/plugins/debugger/debuggerengine.h | 3 --- src/plugins/debugger/debuggerplugin.cpp | 5 ----- 2 files changed, 8 deletions(-) diff --git a/src/plugins/debugger/debuggerengine.h b/src/plugins/debugger/debuggerengine.h index 251126214fa..13ddc1c7820 100644 --- a/src/plugins/debugger/debuggerengine.h +++ b/src/plugins/debugger/debuggerengine.h @@ -88,13 +88,10 @@ public: QString coreFile; QString overrideStartScript; // Used in attach to core and remote debugging QString startMessage; // First status message shown. - QByteArray remoteSourcesDir; - QString remoteMountPoint; QMap sourcePathMap; QString debugInfoLocation; // Gdb "set-debug-file-directory". QStringList debugSourceLocation; // Gdb "directory" QString serverStartScript; - QString localMountDir; ProjectExplorer::IDevice::ConstPtr device; bool isSnapshot = false; // Set if created internally. diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index d531fe44467..a8d0fd4b854 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -2302,11 +2302,6 @@ static QString formatStartParameters(DebuggerRunParameters &sp) << sp.qmlServerPort << '\n'; if (!sp.remoteChannel.isEmpty()) { str << "Remote: " << sp.remoteChannel << '\n'; - if (!sp.remoteSourcesDir.isEmpty()) - str << "Remote sources: " << sp.remoteSourcesDir << '\n'; - if (!sp.remoteMountPoint.isEmpty()) - str << "Remote mount point: " << sp.remoteMountPoint - << " Local: " << sp.localMountDir << '\n'; } str << "Sysroot: " << sp.sysRoot << '\n'; str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1Char(':')) << '\n';