ProjectExplorer: Make DeployConfiguration final

There are no derived classes anymore.

It turns out that the isEnabled() and disabledReason() functions
are unused. Remove them.

Change-Id: I0e79729e87cb68d938115e704fb8e45c24ba1013
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2019-01-18 15:27:05 +01:00
parent bb72406dad
commit 23c578c478
2 changed files with 2 additions and 18 deletions

View File

@@ -83,16 +83,6 @@ QVariantMap DeployConfiguration::toMap() const
return map;
}
bool DeployConfiguration::isEnabled() const
{
return false;
}
QString DeployConfiguration::disabledReason() const
{
return QString();
}
bool DeployConfiguration::fromMap(const QVariantMap &map)
{
if (!ProjectConfiguration::fromMap(map))